diff options
author | Naren Manimohan <narendhar15@gmail.com> | 2019-03-21 16:00:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-03-21 16:57:40 (GMT) |
commit | 0404efe786b1e2c5c28065a53e55ec77217e7b49 (patch) | |
tree | 57e5ad638820c1894bf070b51741c454cb6b7584 /Source/CMakeLists.txt | |
parent | 2060a1445c6c6350eb886cfe70f956dccaef798e (diff) | |
download | CMake-0404efe786b1e2c5c28065a53e55ec77217e7b49.zip CMake-0404efe786b1e2c5c28065a53e55ec77217e7b49.tar.gz CMake-0404efe786b1e2c5c28065a53e55ec77217e7b49.tar.bz2 |
GHS: Add support for GHS Multi Generator in Linux
Diffstat (limited to 'Source/CMakeLists.txt')
-rw-r--r-- | Source/CMakeLists.txt | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index 696826f..f65e78f 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -727,14 +727,6 @@ if (WIN32) cmVisualStudioSlnParser.cxx cmVisualStudioWCEPlatformParser.h cmVisualStudioWCEPlatformParser.cxx - cmGlobalGhsMultiGenerator.cxx - cmGlobalGhsMultiGenerator.h - cmLocalGhsMultiGenerator.cxx - cmLocalGhsMultiGenerator.h - cmGhsMultiTargetGenerator.cxx - cmGhsMultiTargetGenerator.h - cmGhsMultiGpj.cxx - cmGhsMultiGpj.h cmVSSetupHelper.cxx cmVSSetupHelper.h ) @@ -754,6 +746,22 @@ if(WIN32 OR CMAKE_SYSTEM_NAME STREQUAL "Linux") ) endif() +# GHS support +# Works only for windows and linux +if(WIN32 OR CMAKE_SYSTEM_NAME STREQUAL "Linux") + set(SRCS ${SRCS} + cmGlobalGhsMultiGenerator.cxx + cmGlobalGhsMultiGenerator.h + cmLocalGhsMultiGenerator.cxx + cmLocalGhsMultiGenerator.h + cmGhsMultiTargetGenerator.cxx + cmGhsMultiTargetGenerator.h + cmGhsMultiGpj.cxx + cmGhsMultiGpj.h + ) +endif() + + # Ninja support set(SRCS ${SRCS} cmGlobalNinjaGenerator.cxx |