summaryrefslogtreecommitdiffstats
path: root/Source/cmIfCommand.h
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Clarify documentation for if.Bill Hoffman2009-09-141-1/+1
|
* ENH: clean up some help textKen Martin2009-06-121-4/+4
|
* ENH: modified the if command to address bug 9123 someKen Martin2009-06-121-4/+67
|
* ENH: fix styleKen Martin2009-02-161-6/+8
|
* ENH: fix documentation and add docs on parenthetical expressionsKen Martin2009-02-121-5/+12
|
* ENH: Better error message for unclosed blocksBrad King2009-01-211-1/+0
| | | | | | This centralizes construction of the error message for an unclosed logical block (if, foreach, etc.). We record the line at which each block is opened so it can be reported in the error message.
* ENH: Refactor function blocker deletionBrad King2009-01-201-2/+1
| | | | | | | | | When a function blocker decides to remove itself we previously removed it at every return point from the C++ scope in which its removal is needed. This teaches function blockers to transfer ownership of themselves from cmMakefile to an automatic variable for deletion on return. Since this removes blockers before they replay their commands, we no longer need to avoid running blockers on their own commands.
* ENH: Add version comparison to if() commandBrad King2008-09-101-0/+5
| | | | | | Provide VERSION_LESS, VERSION_EQUAL, and VERSION_GREATER operators in the if() command. This simplifies component-wise comparison of version numbers in the form "major[.minor[.patch[.tweak]]]".
* ENH: Add if(TARGET) commandBrad King2008-08-201-0/+2
| | | | | | | | | | It is useful to be able to test if a target has been created. Often targets are created only inside conditions. Rather than storing the result of the condition manually for testing by other parts of the project, it is much easier for the other parts to just test for the target's existence. This will also be useful when find-modules start reporting results with IMPORTED targets and projects want to test if a certain target is available.
* BUG: fix memory leak and cleanup error string codeKen Martin2008-06-281-1/+1
|
* ENH: Add "if(POLICY policy-id)" option for IF command.Brad King2008-03-201-0/+3
| | | | | | | | | | | - This will help projects support multiple CMake versions. - In order to set a policy when using a newer CMake but still working with an older CMake one may write if(POLICY CMP1234) cmake_policy(SET CMP1234 NEW) endif(POLICY CMP1234) - Note that since CMake 2.4 does not have if(POLICY) supporting it will also require using "if(COMMAND cmake_policy)"
* STYLE: document that if(COMMAND) works also for macros and functionsAlexander Neundorf2008-02-101-1/+2
| | | | Alex
* ENH: add return and break support to cmake, also change basic command ↵Ken Martin2008-01-231-4/+10
| | | | invocation signature to be able to return extra informaiton via the cmExecutionStatus class
* ENH: make commands lower case by defaultKen Martin2007-10-101-36/+36
|
* ENH: also store the group matches from IF( MATCHES) in CMAKE_MATCH_(0..9)Alexander Neundorf2007-08-291-1/+1
| | | | Alex
* ENH: add IF(IS_ABSOLUTE path), so no regex matching is required in the cmake ↵Alexander Neundorf2007-06-061-0/+2
| | | | | | scripts Alex
* STYLE: improve IF documentation to cover elseifKen Martin2007-01-261-2/+8
|
* ENH: fix a warning and a nice fix to the IF commandKen Martin2006-12-121-1/+2
|
* ENH: Remove old IF(FILE_IS_NEWER) syntax. It was never in a release anyway.Brad King2006-10-231-1/+0
|
* ENH: Patch from Alex to provide nicer syntax for FILE_IS_NEWER. Using name ↵Brad King2006-10-231-0/+1
| | | | IS_NEWER_THAN so old syntax will continue to work.
* ENH: added elseifKen Martin2006-09-221-1/+2
|
* ENH: Patch from Alex for adding IF(FILE_IS_NEWER). I also added a test.Brad King2006-08-251-0/+4
|
* ENH: Clarified documentation of EXISTS and IS_DIRECTORY modes.Brad King2006-06-261-2/+4
|
* BUG: Patch from Miguel A. Figueroa-Villanueva for fixing documentation.Brad King2006-06-121-3/+3
|
* STYLE: fix line lengthKen Martin2006-05-111-3/+3
|
* BUG: Fixed missing false values in documentation of IF command.Brad King2006-04-181-2/+4
|
* ENH: added some new functionalityKen Martin2006-03-221-1/+3
|
* STYLE: some m_ to this-> cleanupKen Martin2006-03-151-2/+2
|
* STYLE: fix docsKen Martin2005-11-161-1/+1
|
* STYLE: fix the docsKen Martin2005-05-241-4/+2
|
* ENH: big change that includes immediate subdir support, removing the notion ↵Ken Martin2005-03-181-6/+0
| | | | of inherited commands, makefiles no longer read in the parent makefiles but instead inherit thier parent makefiles current settings
* BUG: When regular expression failes to compile, produce error: Fixes part of ↵Andy Cedilnik2004-08-031-2/+3
| | | | Bug #1025 - CMake silently ignores regular expression failure
* added strequalKen Martin2004-06-141-4/+6
|
* better if expression supportKen Martin2004-05-011-3/+13
|
* ENH: add a numeric EQUAL to the IF statment, very useful for variable ↵Bill Hoffman2004-04-281-1/+3
| | | | arguments in MACROS
* ENH: Make IF command scriptableAndy Cedilnik2004-02-191-0/+5
|
* removed redundent includesKen Martin2003-08-101-1/+0
|
* ENH: Cleaned up documentation and formatted it for use by cmDocumentation.Brad King2003-02-141-9/+48
|
* ERR: Fixed unused parameter warning.Brad King2002-12-131-1/+1
|
* ENH: Moved ExpandListVariables out of individual commands. Argument ↵Brad King2002-12-111-6/+10
| | | | evaluation rules are now very consistent. Double quotes can always be used to create exactly one argument, regardless of contents inside.
* 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.
* BUG: STRLESS and STRGREATER need to treat non-existent definitions as strings.Brad King2002-10-021-0/+5
|
* better error handling with if statementsKen Martin2002-07-101-0/+1
|
* consolidated IF handling and added checks for bad argumentsKen Martin2002-07-011-0/+5
|
* adde less greaterKen Martin2002-05-231-1/+4
|
* ENH:Updated copyrightWill Schroeder2002-01-211-29/+5
|
* added exists option for if statementKen Martin2002-01-021-1/+3
|
* ENH: change InitialPass to take a const reference to the argument string, to ↵Bill Hoffman2001-09-201-1/+1
| | | | avoid changes to the file cache
* added new if commandsKen Martin2001-08-061-5/+5
|