diff options
author | wsnipex <wsnipex@a1.net> | 2017-07-13 21:15:22 -0700 |
---|---|---|
committer | Lukas Rusak <lorusak@gmail.com> | 2017-07-15 08:51:48 -0700 |
commit | 4dfc7a8997c3bed8b700e0af858b78c1c8fe3796 (patch) | |
tree | c07e2b180ec2cb12ac5980c2dd6985d7cc910e96 /CMakeLists.txt | |
parent | f28d41c6d1057203e5a105f896e5cfb152aa4ab7 (diff) |
[cmake] move platform check to it's own script
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 29 |
1 files changed, 1 insertions, 28 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a4e8e0690a..38af6f0268 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,6 +24,7 @@ endif() include(cmake/modules/extra/ECMEnableSanitizers.cmake) include(cmake/scripts/common/GeneratorSetup.cmake) include(cmake/scripts/common/AddOptions.cmake) +include(cmake/scripts/common/Platform.cmake) include(cmake/scripts/common/ArchSetup.cmake) include(cmake/scripts/common/Macros.cmake) include(cmake/scripts/common/ProjectMacros.cmake) @@ -93,34 +94,6 @@ endif() find_package(Threads REQUIRED QUIET) list(APPEND DEPLIBS ${CMAKE_THREAD_LIBS_INIT}) -# Platform -if(CORE_SYSTEM_NAME STREQUAL linux) - # Set default CORE_PLATFORM_NAME to X11 - # This is overridden by user setting -DCORE_PLATFORM_NAME=<platform> - set(_DEFAULT_PLATFORM X11) -else() - string(TOLOWER ${CORE_SYSTEM_NAME} _DEFAULT_PLATFORM) -endif() - -# -# Note: please do not use CORE_PLATFORM_NAME in any checks, -# use the normalized to lower case CORE_PLATFORM_NAME_LC (see below) instead -# -if(NOT CORE_PLATFORM_NAME) - set(CORE_PLATFORM_NAME ${_DEFAULT_PLATFORM} CACHE STRING "Platform port to build") -endif() -unset(_DEFAULT_PLATFORM) -string(TOLOWER ${CORE_PLATFORM_NAME} CORE_PLATFORM_NAME_LC) - -list(APPEND final_message "Platform: ${CORE_PLATFORM_NAME}") -if(EXISTS ${CMAKE_SOURCE_DIR}/cmake/platform/${CORE_SYSTEM_NAME}/${CORE_PLATFORM_NAME_LC}.cmake) - include(${CMAKE_SOURCE_DIR}/cmake/platform/${CORE_SYSTEM_NAME}/${CORE_PLATFORM_NAME_LC}.cmake) -else() - file(GLOB _platformnames RELATIVE ${CMAKE_SOURCE_DIR}/cmake/platform/${CORE_SYSTEM_NAME}/ - ${CMAKE_SOURCE_DIR}/cmake/platform/${CORE_SYSTEM_NAME}/*.cmake) - string(REPLACE ".cmake" " " _platformnames ${_platformnames}) - message(FATAL_ERROR "invalid CORE_PLATFORM_NAME: ${CORE_PLATFORM_NAME_LC}\nValid platforms: ${_platformnames}") -endif() foreach(dep ${PLATFORM_REQUIRED_DEPS}) # We need to specify ENABLE_${PLATFORM_REQUIRED_DEPS} in order for the |