summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-01-02 20:01:43 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-01-02 20:01:43 (GMT)
commit9d0f86d7d017aa00420800bd72e00d45681710c9 (patch)
tree7bf838bd545d9763c8b0da615c51f83d5b73756c
parente37d8867b88a16cdb1126a40507198df1ebcca27 (diff)
downloadCMake-9d0f86d7d017aa00420800bd72e00d45681710c9.zip
CMake-9d0f86d7d017aa00420800bd72e00d45681710c9.tar.gz
CMake-9d0f86d7d017aa00420800bd72e00d45681710c9.tar.bz2
BUG: force EXECUABLE and LIBRARY output paths so bad cache entries do not fail tests
-rw-r--r--Tests/CustomCommand/CMakeLists.txt4
-rw-r--r--Tests/Wrapping/CMakeLists.txt4
2 files changed, 4 insertions, 4 deletions
diff --git a/Tests/CustomCommand/CMakeLists.txt b/Tests/CustomCommand/CMakeLists.txt
index 2a83e72..69b6d2f 100644
--- a/Tests/CustomCommand/CMakeLists.txt
+++ b/Tests/CustomCommand/CMakeLists.txt
@@ -7,11 +7,11 @@ PROJECT (CustomCommand)
# Lib and exe path
#
SET (LIBRARY_OUTPUT_PATH
- ${PROJECT_BINARY_DIR}/bin/ CACHE PATH
+ ${PROJECT_BINARY_DIR}/bin/ CACHE INTERNAL
"Single output directory for building all libraries.")
SET (EXECUTABLE_OUTPUT_PATH
- ${PROJECT_BINARY_DIR}/bin/ CACHE PATH
+ ${PROJECT_BINARY_DIR}/bin/ CACHE INTERNAL
"Single output directory for building all executables.")
################################################################
diff --git a/Tests/Wrapping/CMakeLists.txt b/Tests/Wrapping/CMakeLists.txt
index 60a0c15..d8b332d 100644
--- a/Tests/Wrapping/CMakeLists.txt
+++ b/Tests/Wrapping/CMakeLists.txt
@@ -11,11 +11,11 @@ SET_DIRECTORY_PROPERTIES(PROPERTIES CLEAN_NO_CUSTOM 1)
# Lib and exe path
#
SET (LIBRARY_OUTPUT_PATH
- ${Wrapping_BINARY_DIR}/bin/ CACHE PATH
+ ${Wrapping_BINARY_DIR}/bin/ CACHE INTERNAL
"Single output directory for building all libraries.")
SET (EXECUTABLE_OUTPUT_PATH
- ${Wrapping_BINARY_DIR}/bin/ CACHE PATH
+ ${Wrapping_BINARY_DIR}/bin/ CACHE INTERNAL
"Single output directory for building all executables.")
#