summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeVS8FindMake.cmake
Commit message (Collapse)AuthorAgeFilesLines
* VS: Switch to internal CMAKE_MAKE_PROGRAM lookup by generatorsBrad King2013-11-181-34/+0
| | | | | | | | Drop the "Modules/CMakeVS*FindMake.cmake" files. Override the cmGlobalGenerator::FindMakeProgram method for VS generators to use their internal APIs to locate the build tool. Set the CMAKE_MAKE_PROGRAM as a normal variable for use by project code, but do not cache it. This will allow CMake and CTest to select the proper tool at build time.
* Remove CMake-language block-end command argumentsKitware Robot2012-08-131-1/+1
| | | | | | | | | | | | | | | | | 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-8/+8
| | | | | | | | | | | | | | | | | 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
|
* Remove "Microsoft Visual Studio .NET" from VS8 and VS9 find modules.David Cole2010-06-161-3/+0
| | | | | CMake was incorrectly finding devenv from Visual Studio 7.1 installations when asked to generate using Visual Studio 9 2008. Now, it will not.
* Convert CMake non-find modules to BSD LicenseBrad King2009-09-281-0/+13
| | | | | | | This adds copyright/license notification blocks CMake's non-find modules. Most 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.
* BUG: Rearrange paths to find correct installations of Visual Studio. Patch ↵David Cole2009-05-261-3/+4
| | | | devenv.modified_search_order.patch came from issue #7919.
* ENH: when cross compiling, e.g. for WinCE, don't use VCExpress, since this ↵Alexander Neundorf2009-05-091-1/+8
| | | | | | | | doesn't support it This is the first patch to add support for WinCE to cmake (#7919) Alex
* ENH: add support for vs 2008 beta 2Bill Hoffman2007-09-171-0/+1
|
* ENH: add correct flags for msvc generatorsBill Hoffman2006-04-101-0/+1
|
* ENH: add search directories for 32 bit devenv from a 64bit cmakeBill Hoffman2006-04-041-2/+5
|
* ENH: look for VCExpress firstBill Hoffman2006-03-031-1/+1
|
* ENH: use program files env for searchingBill Hoffman2006-02-281-0/+1
|
* COMP: Fix for support of VS 8.0 beta 2Andy Cedilnik2005-05-261-1/+1
|
* ENH: add support for VCExpress 2005Bill Hoffman2004-07-051-0/+10