aboutsummaryrefslogtreecommitdiff
path: root/cmake/macros/CheckPlatform.cmake
diff options
context:
space:
mode:
authorclick <none@none>2010-09-19 18:17:53 +0200
committerclick <none@none>2010-09-19 18:17:53 +0200
commit58dafd94e23e88407e73416b5093800baf7d190b (patch)
tree19863cbcad9906caca0864f6fc3781a573c93d68 /cmake/macros/CheckPlatform.cmake
parent54212cf387662a3b3ca694b466368162b416bd42 (diff)
BuildSystem/Platforms: Move platform-specific settings into respective directories, consistent with what is done with compilers.
BuildSystem/GCC: Add some additional parameters when using SFMT --HG-- branch : trunk
Diffstat (limited to 'cmake/macros/CheckPlatform.cmake')
-rw-r--r--cmake/macros/CheckPlatform.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmake/macros/CheckPlatform.cmake b/cmake/macros/CheckPlatform.cmake
index a9c80458c02..0cdf5d8ffbf 100644
--- a/cmake/macros/CheckPlatform.cmake
+++ b/cmake/macros/CheckPlatform.cmake
@@ -11,9 +11,9 @@ endif()
include("${CMAKE_SOURCE_DIR}/cmake/platform/settings.cmake")
if(WIN32)
- include("${CMAKE_SOURCE_DIR}/cmake/platform/settings.win32.cmake")
+ include("${CMAKE_SOURCE_DIR}/cmake/platform/win/settings.cmake")
elseif(APPLE)
- include("${CMAKE_SOURCE_DIR}/cmake/platform/settings.osx.cmake")
+ include("${CMAKE_SOURCE_DIR}/cmake/platform/osx/settings.cmake")
elseif(UNIX)
- include("${CMAKE_SOURCE_DIR}/cmake/platform/settings.unix.cmake")
+ include("${CMAKE_SOURCE_DIR}/cmake/platform/unix/settings.cmake")
endif()