summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
Commit message (Collapse)AuthorAgeFilesLines
* BUG: fix resource file with a full pathBill Hoffman2008-01-031-1/+1
|
* ENH: fix new incremental link stuff to work with nmake @ filesBill Hoffman2008-01-021-4/+32
|
* ENH: remove warningBill Hoffman2008-01-011-1/+1
|
* ENH: add ability to have manifest files and incremental linking with make ↵Bill Hoffman2008-01-011-1/+272
| | | | and nmake
* ENH: Add a depends check step to custom targets. Add support for the ↵Brad King2007-12-211-18/+13
| | | | IMPLICIT_DEPENDS feature of custom commands when building in custom targets. Convert multiple-output pair checks to be per-target instead of global.
* ENH: Enabled color printing of "Scanning dependencies of target ..." message.Brad King2007-12-191-25/+14
|
* ENH: Moved dependency integrity check from CheckBuildSystem over to a ↵Brad King2007-12-191-2/+10
| | | | per-target UpdateDependencies step. This greatly reduces the startup time for make processes and allows individual targets to be built without a global dependency check.
* ENH: Improved speed of cmake::CheckBuildSystem when checking build system ↵Brad King2007-12-191-22/+72
| | | | outputs versus dependencies. Instead of doing an O(m*n) comparison of every pair, just locate the oldest output and the newest input and compare them which is now O(m+n).
* ENH: add support for vs 9 win64Bill Hoffman2007-12-171-0/+12
|
* STYLE: Fixed line-too-long.Brad King2007-12-151-1/+2
|
* COMP: Add missing return value from Bill's change.Brad King2007-12-131-0/+1
|
* ENH: Centralized and globalized computation of CMake program locations. ↵Brad King2007-12-131-47/+7
| | | | This eliminates startup paths that failed to produce this information.
* BUG: Fixed typo introduced by previous commit.Brad King2007-12-131-1/+1
|
* ENH: fix for bug 6102, allow users to change the compilerBill Hoffman2007-12-131-2/+71
|
* ENH: add a touch -E command to cmakeBill Hoffman2007-12-041-0/+30
|
* ENH: add functions and raise scopeKen Martin2007-12-031-1/+2
|
* COMP: Do not build VS-specific code when generators are not included.Brad King2007-11-191-0/+5
|
* ENH: Added call to StopBuild VS macro when projects fail to regenerate ↵Brad King2007-11-191-0/+18
| | | | during a build.
* ENH: Add ability to call Visual Studio macros from CMake. Add a CMake Visual ↵David Cole2007-11-161-0/+29
| | | | Studio macro to reload a solution file automatically if CMake makes changes to .sln files or .vcproj files. Add code to call the macro automatically for any running Visual Studio instances with the .sln file open at the end of the Visual Studio Generate call. Only call the macro if some .sln or .vcproj file changed during Generate. Also, add handling for REG_EXPAND_SZ type to SystemTools::ReadRegistryValue - returned string has environment variable references expanded.
* BUG: Fix messages for time stamp file recreation.Brad King2007-11-121-2/+2
|
* ENH: Allow VS 7 project Rebuild and Solution Rebuild to work without ↵Brad King2007-11-101-0/+78
| | | | re-running CMake for every project during the rebuild.
* ENH: different way of testing propertiesKen Martin2007-11-061-0/+97
|
* COMP: Fix warnings on 64-bit Mac OS X build. Patch from issue #3697.Brad King2007-11-051-2/+2
|
* BUG: fix bad set property code in cmakeKen Martin2007-10-301-1/+1
|
* ENH: add ability to get documentaiton of a property from a scriptKen Martin2007-10-241-0/+11
|
* ENH: change to make the documentation class more generic, about halfway ↵Ken Martin2007-10-221-23/+21
| | | | there, also provides secitons for Variables now
* ENH: add docs for variablesBill Hoffman2007-10-181-7/+2
|
* ENH: minor doc cleanups and an example of documenting a variableKen Martin2007-10-151-0/+12
|
* BUG: revert doc changes since VS7 cannot compile them, will implement them ↵Ken Martin2007-10-091-3/+3
| | | | in a different manner
* ENH: make documentation entries actually store their dataKen Martin2007-10-091-3/+3
|
* ENH: add support for vs 2008 beta 2Bill Hoffman2007-09-171-0/+3
|
* BUG: Fix path to CMake executables when run from bootstrap build.Brad King2007-08-311-0/+1
|
* ENH: fix memory leakBill Hoffman2007-08-101-3/+5
|
* ENH: add global properties for collecting enabled/disabled features duringAlexander Neundorf2007-08-071-0/+26
| | | | | | | | | | | | the cmake run and add macros print_enabled/disabled_features() and set_feature_info(), so projects can get a nice overview at the end of the cmake run what has been found and what hasn't FIND_PACKAGE() automatically adds the packages to these global properties, except when used with QUIET Maybe this can also be useful for packagers to find out dependencies of projects. Alex
* BUG: also offer the extra generators in CMakeSetupAlexander Neundorf2007-08-011-0/+6
| | | | Alex
* ENH: add Eclipse CDT4 generator, patch from Miguel A. Figueroa-VillanuevaAlexander Neundorf2007-08-011-0/+13
| | | | Alex
* ENH: deb generator can now generate deb packagesAlexander Neundorf2007-07-271-0/+23
| | | | | | | | | | -remove the unscriptable commands also from the cpack cmake -use CPACK_PACKAGE_CONTACT in CMakeCPack.cmake, it's used in the nsis and the deb generator -make set_properties() scriptable -use a non-const char array for adding the python modules Alex
* ENH: add an empty debian package generator, Mathieu volunteered to fill itAlexander Neundorf2007-07-251-4/+19
| | | | | | :-) Alex
* ENH: build codeblocks generator also on WindowsAlexander Neundorf2007-07-181-7/+14
| | | | Alex
* COMP: fix build on Windows, where GetCurrentDirecty() is redefined toAlexander Neundorf2007-07-171-1/+4
| | | | | | | GetCurrentDirectoryA() -correct return value for md5sum Alex
* STYLE: fix line lengths and add "remove -f" to the docsAlexander Neundorf2007-07-171-21/+23
| | | | Alex
* ENH: apply patch from Mathieu, add argument -E md5sum to compute md5sums ofAlexander Neundorf2007-07-161-0/+26
| | | | | | files, compatible to md5sum output Alex
* ENH: add a simple CodeBlocks extra generator, early alpha stage, there seemsAlexander Neundorf2007-07-131-0/+3
| | | | | | to be interest in it Alex
* STYLE: sort the property documentation intoAlexander Neundorf2007-07-111-8/+3
| | | | | | global/directory/target/test/sourcefile and variable sections Alex
* STYLE: name the external generator "KDevelop3 - Unix Makefiles" instead of ↵Alexander Neundorf2007-07-031-2/+6
| | | | | | | | | "Unix Makefiles - KDevelop3" -initialize Ignore to 0, crashes otherwise Alex
* ENH: Added global property FIND_LIBRARY_USE_LIB64_PATHS to allow lib64 paths ↵Brad King2007-06-271-0/+7
| | | | to be searched optionally. Turn off the feature on debian systems. This addresses debian report 419007.
* STYLE: change global cmake variable CMAKE_TARGET_SUPPORTS_ONLY_STATIC_LIBSAlexander Neundorf2007-06-261-0/+13
| | | | | | to the first global cmake property TARGET_SUPPORTS_SHARED_LIBS Alex
* ENH: added the ability to document variables and cached_variablesKen Martin2007-06-251-67/+10
|
* ENH: some property cleanup and added GetPropertyKen Martin2007-06-251-0/+34
|
* ENH: put compatibility commands in extra section and prepare for creatingAlexander Neundorf2007-06-221-2/+9
| | | | | | | separate man pages for properties, modules, commands and compatibility commands Alex