summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-10-17 16:52:03 (GMT)
committerBrad King <brad.king@kitware.com>2008-10-17 16:52:03 (GMT)
commit1c70745c626798c029f48f99891c62b9ba0aa313 (patch)
tree1cf6c1c40b170e1058124e14912c745d6e62c9ad
parent32be27c6dee354b6f696b1fc7551ee6ca894fafc (diff)
downloadCMake-1c70745c626798c029f48f99891c62b9ba0aa313.zip
CMake-1c70745c626798c029f48f99891c62b9ba0aa313.tar.gz
CMake-1c70745c626798c029f48f99891c62b9ba0aa313.tar.bz2
BUG: Fix KWSys SystemInformation dependencies
The SystemInformation component of KWSys requires Process and FundamentalType.
-rw-r--r--Source/kwsys/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/kwsys/CMakeLists.txt b/Source/kwsys/CMakeLists.txt
index c3580c1..91ac64e 100644
--- a/Source/kwsys/CMakeLists.txt
+++ b/Source/kwsys/CMakeLists.txt
@@ -167,6 +167,10 @@ ENDIF(KWSYS_USE_Glob)
IF(KWSYS_USE_Process)
SET(KWSYS_USE_System 1)
ENDIF(KWSYS_USE_Process)
+IF(KWSYS_USE_SystemInformation)
+ SET(KWSYS_USE_FundamentalType 1)
+ SET(KWSYS_USE_Process 1)
+ENDIF(KWSYS_USE_SystemInformation)
# Setup the large file support default.
IF(KWSYS_LFS_DISABLE)