summaryrefslogtreecommitdiffstats
path: root/Tests/SubDir/Executable
Commit message (Collapse)AuthorAgeFilesLines
* Convert CMake-language commands to lower caseKitware Robot2012-08-131-1/+1
| | | | | | | | | | | | | | | | | 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: When source file is in subdirectory put object file in subdirectory. ↵Andy Cedilnik2004-04-261-1/+12
| | | | Fixes Bug #290 - Source files in subdirectories should produce object files in subdirectories
* ENH: add new subdirectory exclude from top optionBill Hoffman2004-03-091-3/+5
|
* ENH: create new test to test subdir excludeBill Hoffman2004-03-092-0/+37