comparison Resources/LinuxStandardBaseToolchain.cmake @ 3620:649489b9bfdb

fix compatibility between LSB and cmake >= 3.6
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 23 Jan 2020 18:00:08 +0100
parents 5d78df37c62f
children d737173197e1
comparison
equal deleted inserted replaced
3616:b6a569e6e85b 3620:649489b9bfdb
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: