summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeSystemWithToolchainFile.cmake.in
blob: b86a810a7d81ee12a1d07b45ad03dc4c93a72bba (plain)
1
2
3
4
5
6
7
8
9
10
11

INCLUDE("@CMAKE_TOOLCHAIN_FILE@")

# set CMAKE_SYSTEM to the CMAKE_SYSTEM_NAME
SET(CMAKE_SYSTEM  ${CMAKE_SYSTEM_NAME})
# if there is a CMAKE_SYSTEM_VERSION then add a -${CMAKE_SYSTEM_VERSION}
IF(CMAKE_SYSTEM_VERSION)
  SET(CMAKE_SYSTEM ${CMAKE_SYSTEM}-${CMAKE_SYSTEM_VERSION})
ENDIF(CMAKE_SYSTEM_VERSION)

SET(CMAKE_SYSTEM_LOADED 1)