1
0
mirror of https://github.com/home-assistant/operating-system.git synced 2026-02-23 11:15:57 +00:00
Files
operating-system/buildroot/support/misc/Buildroot.cmake
2020-01-11 16:41:13 +00:00

9 lines
363 B
CMake

# Impersonate a Linux system. Afterall, that's what we are...
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM ${CMAKE_SYSTEM_NAME})
include(Platform/Linux)
# Override problematic settings, to avoid RPATH against host lib directories.
set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB32_PATHS FALSE)
set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS FALSE)