summaryrefslogtreecommitdiffstats
path: root/Modules/FindCABLE.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Remove CMake-language block-end command argumentsKitware Robot2012-08-131-7/+7
| | | | | | | | | | | | | | | | | 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-22/+22
| | | | | | | | | | | | | | | | | 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
* Modules: Fix spelling 'To distributed' -> 'To distribute'Todd Gamblin2010-08-091-1/+1
|
* Convert CMake find-modules to BSD LicenseBrad King2009-09-281-0/+13
| | | | | | | This adds copyright/license notification blocks CMake's find-modules. Many of the modules had no notices at all. Some had notices referring to the BSD license already. This commit normalizes existing notices and adds missing notices.
* ENH: some style fixes for the bookKen Martin2005-12-151-3/+5
|
* ENH: add documentation support for modulesBill Hoffman2005-12-141-7/+4
|
* ENH: Updated search paths to newest values from Cable.Brad King2003-04-221-2/+2
|
* BUG: Should not load CMAKE_INSTALL_PREFIX from the cache.Brad King2002-10-111-0/+1
|
* ENH: clean modules (doc, make stuff advanced, etc.)Sebastien Barre2002-06-141-5/+5
|
* ENH: Updated for latest Cable from CVS. Old alpha version of Cable is no ↵Brad King2002-04-171-33/+24
| | | | longer supported.
* ENH: Changed CABLE_BUILD_DIR to look for cableVersion.h instead of ↵Brad King2001-10-031-1/+1
| | | | cable.README.txt.
* ENH: Added support for finding cable when it is built in a configuration ↵Brad King2001-09-201-5/+11
| | | | subdirectory by MSVC.
* ENH: Added find support for looking at Cable's build directory if the user ↵Brad King2001-09-171-23/+56
| | | | sets the CABLE_BUILD_DIR cache entry.
* ENH: Updated library finding code to handle new cable installation directory ↵Brad King2001-08-291-8/+10
| | | | structure. It now uses separate directories for CxxTypes and WrapTclFacility headers.
* ENH: Support to find CABLE utility if it is installed.Brad King2001-08-011-0/+36