mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-26 23:13:27 +08:00
8f0872fee3
Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
9 lines
364 B
CMake
9 lines
364 B
CMake
# Impersonate a Linux system. After all, 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)
|