summaryrefslogtreecommitdiffstats
path: root/Tests/SystemInformation/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Tests: Require CMake 3.0 for the SystemInformation test.Stephen Kelly2014-04-071-1/+1
| | | | Correctly identify AppleClang.
* Tests: Remove some trailing black lines.Stephen Kelly2014-02-171-2/+0
|
* Remove CMake-language block-end command argumentsKitware Robot2012-08-131-6/+6
| | | | | | | | | | | | | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | egrep -z -v 'Tests/CMakeTests/While-Endwhile-' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Convert CMake-language commands to lower caseKitware Robot2012-08-131-37/+37
| | | | | | | | | | | | | | | | | 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
* Remove trailing whitespace from most CMake and C/C++ codeKitware Robot2012-08-131-5/+5
| | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//'
* ENH: preclean some warningsKen Martin2008-03-251-0/+1
|
* ENH: some more CMakeList cleanupsKen Martin2007-05-111-7/+7
|
* ENH: Display all output in ctestAndy Cedilnik2005-02-081-0/+2
|
* ENH:Add test for GET/SET_DIRECTORY_PROPERTYAndy Cedilnik2004-04-261-1/+24
|
* ENH: Add option to retrieve list of macros. Close Bug #25 - Get_CMAKE_PROPERTIESAndy Cedilnik2003-08-061-0/+13
|
* ENH: Add accessor for the list of commandsAndy Cedilnik2003-08-041-7/+13
|
* Display Cache and all variablesAndy Cedilnik2003-03-171-1/+4
|
* Add command for accessing cmake properties. At this point the only ↵Andy Cedilnik2003-03-061-0/+5
| | | | properties are VARIABLES and CACHE_VARIABLES. Also add test for this feature
* clean up test for html outputBill Hoffman2002-11-121-5/+5
|
* fix project nameBill Hoffman2002-11-121-1/+1
|
* new testBill Hoffman2002-11-111-0/+8