summaryrefslogtreecommitdiffstats
path: root/Tests/VSExternalInclude/Lib1
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-01-16 21:00:57 (GMT)
committerBrad King <brad.king@kitware.com>2013-01-16 21:01:45 (GMT)
commitbc65b74fa64bdd736eb67b6e579aa1db347f7790 (patch)
treef2f83d45c40fcd3f964c6a0fc05bfbe0d194542c /Tests/VSExternalInclude/Lib1
parentc2ab74acb9230d9218091d3fb5e87b6065f98e0b (diff)
downloadCMake-bc65b74fa64bdd736eb67b6e579aa1db347f7790.zip
CMake-bc65b74fa64bdd736eb67b6e579aa1db347f7790.tar.gz
CMake-bc65b74fa64bdd736eb67b6e579aa1db347f7790.tar.bz2
VS11: Fix VSExternalInclude test
Set CMAKE_SUPPRESS_REGENERATION in the Lib1 and Lib2 projects so that their .vcxproj files do not contain references to ZERO_CHECK. Such references do not make sense when using the files in another .sln file. This does not reduce the effectiveness of the test because real projects that use include_external_msproject will have their own .vcxproj files not generated by CMake anyway.
Diffstat (limited to 'Tests/VSExternalInclude/Lib1')
-rw-r--r--Tests/VSExternalInclude/Lib1/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/VSExternalInclude/Lib1/CMakeLists.txt b/Tests/VSExternalInclude/Lib1/CMakeLists.txt
index 1cb01c5..9dfac86 100644
--- a/Tests/VSExternalInclude/Lib1/CMakeLists.txt
+++ b/Tests/VSExternalInclude/Lib1/CMakeLists.txt
@@ -1,3 +1,4 @@
+set(CMAKE_SUPPRESS_REGENERATION 1)
project(LIB1)
set(SOURCES lib1.cpp)