Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Port all cmOStringStream to std::ostringstream. | Stephen Kelly | 2015-01-11 | 1 | -1/+1 |
| | | | | All compilers hosting CMake support the std class. | ||||
* | Remove some c_str() calls. | Stephen Kelly | 2014-03-11 | 1 | -5/+5 |
| | | | | | | Use the clang RemoveCStrCalls tool to automatically migrate the code. This was only run on linux, so does not have any positive or negative effect on other platforms. | ||||
* | stringapi: Command names | Ben Boeckel | 2014-03-08 | 1 | -1/+1 |
| | |||||
* | Add policy CMP0031 to disallow load_command | Brad King | 2013-10-22 | 1 | -0/+3 |
| | |||||
* | Drop builtin command documentation | Brad King | 2013-10-16 | 1 | -35/+0 |
| | | | | | Drop all GetTerseDocumentation and GetFullDocumentation methods from commands. The command documentation is now in Help/command/*.rst files. | ||||
* | Revert "load_command: Deprecate and document pending removal" | Brad King | 2013-01-07 | 1 | -4/+0 |
| | | | | | This reverts commit d2d43986e7f5013465473a71c393fc3897cecbac. We will add a policy to remove the command more gracefully. | ||||
* | load_command: Deprecate and document pending removal | Brad King | 2012-11-07 | 1 | -0/+4 |
| | | | | | | | | | This command works only when building projects using the same architecture as the running CMake binary. Since it was introduced CMake has learned macro() and function() to add commands, and the execute_process() command to launch advanced external computations. Add a RunCMake.load_command test to verify the warning appears. | ||||
* | Remove trailing whitespace from most CMake and C/C++ code | Kitware Robot | 2012-08-13 | 1 | -16/+16 |
| | | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//' | ||||
* | Add 'const' qualifier to some cmCommand members | Yury G. Kudryashov | 2012-02-29 | 1 | -3/+3 |
| | | | | | Use const_cast for the special case in cmFindBase where GetFullDocumentation calls GenerateDocumentation. | ||||
* | Convert CMake to OSI-approved BSD License | Brad King | 2009-09-28 | 1 | -14/+9 |
| | | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range. | ||||
* | ENH: Keep only FinalPass commands in memory | Brad King | 2009-07-24 | 1 | -0/+2 |
| | | | | | | In cmMakefile we save all invoked commands so that FinalPass can be called on them later. Most commands have no final pass, so we should keep only the few that do. | ||||
* | ENH: add return and break support to cmake, also change basic command ↵ | Ken Martin | 2008-01-23 | 1 | -3/+6 |
| | | | | invocation signature to be able to return extra informaiton via the cmExecutionStatus class | ||||
* | BUG: Reverting previous change. It did not account for the possibility that ↵ | Brad King | 2007-04-20 | 1 | -1/+8 |
| | | | | the loaded command was built with a different compiler. | ||||
* | ENH: Removed code unnecessary now that DynamicLoader is implemented better. | Brad King | 2007-04-19 | 1 | -8/+1 |
| | |||||
* | COMP: Added missing includes. This partially addresses bug#3556. | Brad King | 2006-08-01 | 1 | -0/+6 |
| | |||||
* | BUG: Removed compiled-in CMAKE_SHARED_MODULE_PREFIX and ↵ | Brad King | 2006-03-16 | 1 | -7/+10 |
| | | | | CMAKE_SHARED_MODULE_SUFFIX for loaded commands in favor of using the settings from the platform files. | ||||
* | ENH: Cleanup DynamicLoader so that the symbols have more consistent names, ↵ | Andy Cedilnik | 2006-03-16 | 1 | -4/+8 |
| | | | | start using dynamic loader from kwsys in CMake | ||||
* | STYLE: some m_ to this-> cleanup | Ken Martin | 2006-03-15 | 1 | -5/+6 |
| | |||||
* | ENH: big change that includes immediate subdir support, removing the notion ↵ | Ken Martin | 2005-03-18 | 1 | -8/+0 |
| | | | | of inherited commands, makefiles no longer read in the parent makefiles but instead inherit thier parent makefiles current settings | ||||
* | ENH: LOAD_COMMAND command will now set a variable called ↵ | Brad King | 2005-02-22 | 1 | -2/+11 |
| | | | | CMAKE_LOADED_COMMAND_<COMMAND_NAME> to the full path of the loaded module if loading was successful. Otherwise the variable is not set (will evaluate to empty string). This is useful both in testing whether loading worked and for installing loaded command modules. | ||||
* | WRN: remove warnings | Bill Hoffman | 2004-04-27 | 1 | -3/+11 |
| | |||||
* | ENH: fix for bug id 27, add a signal handler for crashes in loaded commands | Bill Hoffman | 2004-04-26 | 1 | -3/+49 |
| | |||||
* | ERR: Fix crash of cmake on broken load commands | Andy Cedilnik | 2003-08-19 | 1 | -2/+3 |
| | |||||
* | BUG: LastError can return 0, so handle that case | Andy Cedilnik | 2003-08-19 | 1 | -2/+6 |
| | |||||
* | ENH: Moved ExpandListVariables out of individual commands. Argument ↵ | Brad King | 2002-12-11 | 1 | -6/+4 |
| | | | | evaluation rules are now very consistent. Double quotes can always be used to create exactly one argument, regardless of contents inside. | ||||
* | Complete rework of makefile generators expect trouble | Bill Hoffman | 2002-11-08 | 1 | -2/+4 |
| | |||||
* | ENH: Added reference to Copyright.txt. Removed old reference to ITK ↵ | Brad King | 2002-10-23 | 1 | -3/+3 |
| | | | | copyright. Changed program name to CMake instead of Insight in source file header. Also removed tabs. | ||||
* | better warning message | Ken Martin | 2002-10-15 | 1 | -1/+2 |
| | |||||
* | better warning message | Ken Martin | 2002-10-15 | 1 | -27/+32 |
| | |||||
* | some mods to the plugin API | Ken Martin | 2002-10-08 | 1 | -6/+25 |
| | |||||
* | Cleanup | Andy Cedilnik | 2002-09-24 | 1 | -6/+2 |
| | |||||
* | cleaned up API | Ken Martin | 2002-09-23 | 1 | -16/+2 |
| | |||||
* | Fix loading of module for borland | Andy Cedilnik | 2002-09-23 | 1 | -3/+17 |
| | |||||
* | better error reporting | Ken Martin | 2002-09-18 | 1 | -0/+5 |
| | |||||
* | added destructor to loaded commands | Ken Martin | 2002-09-17 | 1 | -1/+11 |
| | |||||
* | ERR: Fixes for comeau compiler. NULL is a pointer of type void*, and cannot ↵ | Brad King | 2002-09-10 | 1 | -1/+1 |
| | | | | be compared directly with other pointer types. We use 0 instead. | ||||
* | changed cache manager and registered generators to no longer be singletons | Ken Martin | 2002-08-28 | 1 | -1/+1 |
| | |||||
* | ENH: fix warnings | Bill Hoffman | 2002-08-27 | 1 | -1/+1 |
| | |||||
* | now uses stubs | Ken Martin | 2002-08-26 | 1 | -3/+5 |
| | |||||
* | adding plugin support | Ken Martin | 2002-08-21 | 1 | -0/+203 |