Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make Complex test of CMakeLib more optional | Brad King | 2009-10-07 | 1 | -7/+2 |
| | | | | | | | Previously we passed inputs to the decision to each Complex test and let the test source decide. This commit moves the decision out of the tests and makes it an option() in their source. This makes it possible to build the Complex tests from outside the CMake test tree. | ||||
* | ENH: Remove CMAKE_ANSI_CFLAGS from tests | Brad King | 2009-07-08 | 1 | -7/+0 |
| | | | | | As of CMake 2.6 this variable is not defined, and the ANSI flags for the HP compiler are simply hard-coded in the default C flags. | ||||
* | ENH: Allow projects to disable per-rule echo lines | Brad King | 2009-03-16 | 1 | -2/+2 |
| | | | | | | | | | This creates global property RULE_MESSAGES which can be set to disbale per-rule progress and action reporting. On Windows, these reports may cause a noticable delay due to the cost of starting extra processes. This feature will allow scripted builds to avoid the cost since they do not need detailed information anyway. This replaces the RULE_PROGRESS property created earlier as it is more complete. See issue #8726. | ||||
* | ENH: Allow projects to disable per-rule progress | Brad King | 2009-03-16 | 1 | -0/+3 |
| | | | | | | | | This creates global property RULE_PROGRESS which can be set to disbale per-rule progress reporting. On Windows, progress reports may cause a noticable delay due to the cost of starting an extra process. This feature will allow scripted builds to avoid the cost since they do not need detailed progress anyway. See issue #8726. | ||||
* | ENH: Add cmake_policy(GET) command mode | Brad King | 2008-08-18 | 1 | -0/+5 |
| | | | | | | | It is likely that projects or CMake modules in the future will need to check the value of a policy setting. For example, if we add a policy that affects the results of FindXYZ.cmake modules, the module code will need to be able to check the policy. | ||||
* | ENH: support parenthesis as arguments and in conditionals feature request #6191 | Ken Martin | 2008-06-26 | 1 | -0/+6 |
| | |||||
* | ENH: Add "if(POLICY policy-id)" option for IF command. | Brad King | 2008-03-20 | 1 | -0/+5 |
| | | | | | | | | | | | - 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)" | ||||
* | ENH: Make per-configuration COMPILE_DEFINITIONS_<CONFIG> directory property ↵ | Brad King | 2008-01-18 | 1 | -0/+4 |
| | | | | initialized from parent. | ||||
* | ENH: user more memory for parser and add test to complex that sets a huge string | Bill Hoffman | 2007-07-20 | 1 | -0/+1 |
| | |||||
* | ENH: Testing new target properties RUNTIME_OUTPUT_DIRECTORY, ↵ | Brad King | 2007-03-12 | 1 | -7/+3 |
| | | | | LIBRARY_OUTPUT_DIRECTORY, and ARCHIVE_OUTPUT_DIRECTORY. This is an incremental fix for bug#2240 and bug#4210. | ||||
* | ENH: Added test case for bug#3966. | Brad King | 2006-10-30 | 1 | -0/+11 |
| | |||||
* | ENH: Added explicit name for option to test CMakeLib. Added option to ↵ | Brad King | 2006-10-19 | 1 | -0/+9 |
| | | | | disable testing of CMakeLib if system utility libraries are used until linking made easier. | ||||
* | BUG: Test -isystem without affecting other tests. Made separate ↵ | Brad King | 2006-10-05 | 1 | -1/+2 |
| | | | | Library/SystemDir for this purpose. | ||||
* | ENH: Adding SYSTEM option to INCLUDE_DIRECTORIES command. This addresses ↵ | Brad King | 2006-10-05 | 1 | -2/+2 |
| | | | | bug #3462. | ||||
* | ENH: added test for elseif | Ken Martin | 2006-09-22 | 1 | -0/+39 |
| | |||||
* | BUG: INCLUDE_DIRECTORIES should interpret relative path arguments with ↵ | Brad King | 2006-05-12 | 1 | -1/+1 |
| | | | | respect to the current source directory. | ||||
* | BUG: Disabling an EXECUTE_PROCESS test until problems on UNIX systems are fixed. | Brad King | 2006-05-08 | 1 | -13/+16 |
| | |||||
* | ENH: Strengthened EXECUTE_PROCESS output check test. | Brad King | 2006-02-10 | 1 | -4/+4 |
| | |||||
* | ENH: Added test for new EXECUTE_PROCESS command. | Brad King | 2006-02-03 | 1 | -0/+23 |
| | |||||
* | ENH: add new cmakedefine01 feature from bug report 2603 | Bill Hoffman | 2006-01-03 | 1 | -0/+2 |
| | |||||
* | BUG: Flush the EXECUTABLE and LIBRARY output path to internal | Andy Cedilnik | 2006-01-02 | 1 | -2/+2 |
| | |||||
* | ENH: added testing of the WHILE command | Ken Martin | 2005-06-30 | 1 | -0/+5 |
| | |||||
* | ENH: remove requirements on 1.2 | Ken Martin | 2005-06-08 | 1 | -1/+1 |
| | |||||
* | ENH: shift to using ADD_SUBDIRECTORY | Ken Martin | 2005-06-08 | 1 | -1/+2 |
| | |||||
* | ENH: Added partial test for include regular expressions. | Brad King | 2005-02-07 | 1 | -1/+1 |
| | |||||
* | ENH: Add ARGV and ARGN support to MACRO command. ARGV is the list of all ↵ | Andy Cedilnik | 2004-04-29 | 1 | -0/+15 |
| | | | | arguments and ARGN is the list of all nonexpected arguments | ||||
* | added tests for var args with macros | Ken Martin | 2004-04-26 | 1 | -0/+13 |
| | |||||
* | ENH: Add test for REMOVE_DEFINITION | Andy Cedilnik | 2004-04-15 | 1 | -11/+12 |
| | |||||
* | BUG: fix the test | Bill Hoffman | 2003-08-07 | 1 | -6/+6 |
| | |||||
* | ENH: improve coverage | Bill Hoffman | 2003-08-07 | 1 | -0/+9 |
| | |||||
* | Remove bogus flags from cmStandardIncludes and make complex test pass | Andy Cedilnik | 2003-03-26 | 1 | -0/+1 |
| | |||||
* | ENH: add a better test for lib deps | Bill Hoffman | 2003-02-03 | 1 | -0/+1 |
| | |||||
* | ENH: add a new command that allows exports of library dependencies from a ↵ | Bill Hoffman | 2003-01-20 | 1 | -0/+1 |
| | | | | project to a file | ||||
* | BUG: fix for backwards compatibility | Bill Hoffman | 2002-12-20 | 1 | -0/+1 |
| | |||||
* | ENH: Added test for generated header included by non-generated source. | Brad King | 2002-12-13 | 1 | -1/+1 |
| | |||||
* | BUG: Can't double-quote foreach arguments. | Brad King | 2002-12-12 | 1 | -1/+1 |
| | |||||
* | BUG: Fixed STRING(REGEX REPLACE ...) and added better test. | Brad King | 2002-11-06 | 1 | -4/+5 |
| | |||||
* | ENH: Added STRING command. | Brad King | 2002-11-06 | 1 | -0/+17 |
| | |||||
* | added test of SET CACHE FORCE | Ken Martin | 2002-10-09 | 1 | -0/+6 |
| | |||||
* | Remove bogus exec_program | Ken Martin | 2002-10-01 | 1 | -1/+0 |
| | |||||
* | Use cmake echo | Andy Cedilnik | 2002-09-27 | 1 | -2/+2 |
| | |||||
* | added new form of Set source file properties command | Ken Martin | 2002-08-26 | 1 | -0/+9 |
| | |||||
* | no more dll for plugin | Bill Hoffman | 2002-08-23 | 1 | -8/+0 |
| | |||||
* | BUG: fix for borland and a shared CMakeLib | Bill Hoffman | 2002-08-22 | 1 | -0/+3 |
| | |||||
* | BUG: fix for borland and a shared CMakeLib | Bill Hoffman | 2002-08-22 | 1 | -0/+5 |
| | |||||
* | added macro test | Ken Martin | 2002-08-13 | 1 | -1/+11 |
| | |||||
* | fixed if statements inside a foreach | Ken Martin | 2002-07-17 | 1 | -3/+3 |
| | |||||
* | ENH: Added test for IF inside a FOREACH. | Brad King | 2002-07-16 | 1 | -0/+14 |
| | |||||
* | *** empty log message *** | Bill Hoffman | 2002-06-19 | 1 | -1/+1 |
| | |||||
* | ENH: try and fix link problem on dec | Bill Hoffman | 2002-06-18 | 1 | -0/+7 |
| |