summaryrefslogtreecommitdiffstats
path: root/Source/cmLoadCommandCommand.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Port cmCommand consumers to cmState.Stephen Kelly2015-04-151-1/+1
|
* Port all cmOStringStream to std::ostringstream.Stephen Kelly2015-01-111-1/+1
| | | | All compilers hosting CMake support the std class.
* Remove some c_str() calls.Stephen Kelly2014-03-111-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 namesBen Boeckel2014-03-081-1/+1
|
* Add policy CMP0031 to disallow load_commandBrad King2013-10-221-0/+3
|
* Drop builtin command documentationBrad King2013-10-161-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 King2013-01-071-4/+0
| | | | | This reverts commit d2d43986e7f5013465473a71c393fc3897cecbac. We will add a policy to remove the command more gracefully.
* load_command: Deprecate and document pending removalBrad King2012-11-071-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++ codeKitware Robot2012-08-131-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 membersYury G. Kudryashov2012-02-291-3/+3
| | | | | Use const_cast for the special case in cmFindBase where GetFullDocumentation calls GenerateDocumentation.
* Convert CMake to OSI-approved BSD LicenseBrad King2009-09-281-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 memoryBrad King2009-07-241-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 Martin2008-01-231-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 King2007-04-201-1/+8
| | | | the loaded command was built with a different compiler.
* ENH: Removed code unnecessary now that DynamicLoader is implemented better.Brad King2007-04-191-8/+1
|
* COMP: Added missing includes. This partially addresses bug#3556.Brad King2006-08-011-0/+6
|
* BUG: Removed compiled-in CMAKE_SHARED_MODULE_PREFIX and ↵Brad King2006-03-161-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 Cedilnik2006-03-161-4/+8
| | | | start using dynamic loader from kwsys in CMake
* STYLE: some m_ to this-> cleanupKen Martin2006-03-151-5/+6
|
* ENH: big change that includes immediate subdir support, removing the notion ↵Ken Martin2005-03-181-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 King2005-02-221-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 warningsBill Hoffman2004-04-271-3/+11
|
* ENH: fix for bug id 27, add a signal handler for crashes in loaded commandsBill Hoffman2004-04-261-3/+49
|
* ERR: Fix crash of cmake on broken load commandsAndy Cedilnik2003-08-191-2/+3
|
* BUG: LastError can return 0, so handle that caseAndy Cedilnik2003-08-191-2/+6
|
* ENH: Moved ExpandListVariables out of individual commands. Argument ↵Brad King2002-12-111-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 troubleBill Hoffman2002-11-081-2/+4
|
* ENH: Added reference to Copyright.txt. Removed old reference to ITK ↵Brad King2002-10-231-3/+3
| | | | copyright. Changed program name to CMake instead of Insight in source file header. Also removed tabs.
* better warning messageKen Martin2002-10-151-1/+2
|
* better warning messageKen Martin2002-10-151-27/+32
|
* some mods to the plugin APIKen Martin2002-10-081-6/+25
|
* CleanupAndy Cedilnik2002-09-241-6/+2
|
* cleaned up APIKen Martin2002-09-231-16/+2
|
* Fix loading of module for borlandAndy Cedilnik2002-09-231-3/+17
|
* better error reportingKen Martin2002-09-181-0/+5
|
* added destructor to loaded commandsKen Martin2002-09-171-1/+11
|
* ERR: Fixes for comeau compiler. NULL is a pointer of type void*, and cannot ↵Brad King2002-09-101-1/+1
| | | | be compared directly with other pointer types. We use 0 instead.
* changed cache manager and registered generators to no longer be singletonsKen Martin2002-08-281-1/+1
|
* ENH: fix warningsBill Hoffman2002-08-271-1/+1
|
* now uses stubsKen Martin2002-08-261-3/+5
|
* adding plugin supportKen Martin2002-08-211-0/+203