diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-06-18 12:54:07 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-06-18 12:54:07 (GMT) |
commit | 0065bc5fa0e83ed572ff0ce554cd2f52ea9d0926 (patch) | |
tree | a3331b1fbbf3546def51e20af75fd199f28db1cd /CMakeLists.txt | |
parent | f844304465c0c8aeb900480e2d7178b5f576261e (diff) | |
download | CMake-0065bc5fa0e83ed572ff0ce554cd2f52ea9d0926.zip CMake-0065bc5fa0e83ed572ff0ce554cd2f52ea9d0926.tar.gz CMake-0065bc5fa0e83ed572ff0ce554cd2f52ea9d0926.tar.bz2 |
ENH: try and fix link problem on dec
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2361e63..3f9c96b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,11 @@ PROJECT(CMake) +IF(CMAKE_SYSTEM MATCHES "OSF1-V.*") + IF(NOT CMAKE_COMPILER_IS_GNUCXX) + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -tweak -no_implicit_include ") + ENDIF(NOT CMAKE_COMPILER_IS_GNUCXX) +ENDIF(CMAKE_SYSTEM MATCHES "OSF1-V.*") + SUBDIRS(Source Modules Templates Utilities) ENABLE_TESTING() |