comparison Resources/Orthanc/LinuxStandardBaseToolchain.cmake @ 1268:9a0a95c0b578

sync
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 31 Jan 2020 17:25:27 +0100
parents 943f9fb02496
children 86f89ab3563e
comparison
equal deleted inserted replaced
1267:e9687648d7af 1268:9a0a95c0b578
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: