Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | VS11: Add VS 2012 Express support (#13348) | Brad King | 2012-09-18 | 1 | -5/+4 |
| | | | | | | | | | | | Use the registry entries that vsvars32.bat uses to detect the location of MSBuild.exe in the framework directory. Invoke MSBuild with the option /p:VisualStudioVersion=$version so it knows from which VS version to load the system build rules. Teach cmGlobalVisualStudio11Generator to set its ExpressEdition member using the registry. | ||||
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 1 | -7/+7 |
| | | | | | | | | | | | | | | | | | 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 | ||||
* | Add Visual Studio 11 generator for x86 and x64 tools | Brad King | 2011-09-23 | 1 | -0/+54 |