2012-08-13 21:47:32 +04:00
|
|
|
set(BEOS 1)
|
2008-09-16 01:53:28 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_DL_LIBS root be)
|
|
|
|
set(CMAKE_C_COMPILE_OPTIONS_PIC "-fPIC")
|
|
|
|
set(CMAKE_C_COMPILE_OPTIONS_PIE "-fPIE")
|
|
|
|
set(CMAKE_SHARED_LIBRARY_C_FLAGS "-fPIC")
|
|
|
|
set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-nostart")
|
|
|
|
set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG "-Wl,-rpath,")
|
|
|
|
set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP ":")
|
|
|
|
set(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-Wl,-soname,")
|
2008-09-16 01:53:28 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
include(Platform/UnixPaths)
|
|
|
|
list(APPEND CMAKE_SYSTEM_PREFIX_PATH /boot/common)
|
|
|
|
list(APPEND CMAKE_SYSTEM_INCLUDE_PATH /boot/common/include)
|
|
|
|
list(APPEND CMAKE_SYSTEM_LIBRARY_PATH /boot/common/lib)
|
|
|
|
list(APPEND CMAKE_SYSTEM_PROGRAM_PATH /boot/common/bin)
|
|
|
|
list(APPEND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES /boot/common/lib)
|
|
|
|
list(APPEND CMAKE_SYSTEM_INCLUDE_PATH /boot/develop/headers/3rdparty)
|
|
|
|
list(APPEND CMAKE_SYSTEM_LIBRARY_PATH /boot/develop/lib/x86)
|
2009-09-30 16:31:53 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
|
|
|
set(CMAKE_INSTALL_PREFIX "/boot/common" CACHE PATH
|
2009-09-30 16:31:53 +04:00
|
|
|
"Install path prefix, prepended onto install directories." FORCE)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|