Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | VS11: Fix VSExternalInclude test | Brad King | 2013-01-16 | 1 | -0/+1 |
| | | | | | | | | | 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. | ||||
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed | ||||
* | ENH: add a test for external projects | Bill Hoffman | 2004-09-14 | 3 | -0/+26 |