comparison Resources/Orthanc/LinuxStandardBaseToolchain.cmake @ 139:e4f1fb4412ea

sync
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 31 Jan 2020 17:23:06 +0100
parents 90692f9c33e0
children d0b02fd48a92
comparison
equal deleted inserted replaced
138:5c5cd59c991f 139:e4f1fb4412ea
29 SET(CMAKE_SYSTEM_VERSION LinuxStandardBase) 29 SET(CMAKE_SYSTEM_VERSION LinuxStandardBase)
30 SET(CMAKE_SYSTEM_PROCESSOR ${LSB_TARGET_PROCESSOR}) 30 SET(CMAKE_SYSTEM_PROCESSOR ${LSB_TARGET_PROCESSOR})
31 31
32 # which compilers to use for C and C++ 32 # which compilers to use for C and C++
33 SET(CMAKE_C_COMPILER ${LSB_PATH}/bin/lsbcc) 33 SET(CMAKE_C_COMPILER ${LSB_PATH}/bin/lsbcc)
34 CMAKE_FORCE_CXX_COMPILER(${LSB_PATH}/bin/lsbc++ GNU) 34
35 if (${CMAKE_VERSION} VERSION_LESS "3.6.0")
36 CMAKE_FORCE_CXX_COMPILER(${LSB_PATH}/bin/lsbc++ GNU)
37 else()
38 SET(CMAKE_CXX_COMPILER ${LSB_PATH}/bin/lsbc++)
39 endif()
35 40
36 # here is the target environment located 41 # here is the target environment located
37 SET(CMAKE_FIND_ROOT_PATH ${LSB_PATH}) 42 SET(CMAKE_FIND_ROOT_PATH ${LSB_PATH})
38 43
39 # adjust the default behaviour of the FIND_XXX() commands: 44 # adjust the default behaviour of the FIND_XXX() commands: