summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Re-enabling # escape test now that it is implemented everywhere.Brad King2006-10-251-4/+4
|
* ENH: Adding support for # escape in Watcom WMake.Brad King2006-10-256-5/+49
|
* BUG: EQUAL -> STREQUAL for string comparison.Brad King2006-10-251-3/+3
|
* BUG: It cannot be an error if the values do not convert. The docs say that ↵Brad King2006-10-251-17/+4
| | | | if the values do not convert the test is false.
* BUG: For LESS, GREATER, and EQUAL check that the arguments can actually be ↵Brad King2006-10-251-3/+23
| | | | converted to numbers. Also force the conversion results to be stored in memory to make sure they both use the same precision. This addresses bug#3966.
* COMP: Remove unnecessary provocationAndy Cedilnik2006-10-251-9/+6
|
* BUG: Attempt to fix the testAndy Cedilnik2006-10-251-2/+2
|
* STYLE: Fix line lengthAndy Cedilnik2006-10-251-1/+2
|
* BUG: honor the REQUIRED flag for Perl, please backport to 2.4 branch so thatAlexander Neundorf2006-10-241-0/+4
| | | | | | it will be in 2.4.4 Alex
* BUG: Looks like gcov produces lines with string /*EOF*/ on them if there is ↵Andy Cedilnik2006-10-241-1/+1
| | | | no line at the end of the file. This will fix the coverage code complaining about it
* ENH: remove failing testBill Hoffman2006-10-241-3/+3
|
* ENH: fix more doxygen issuesBill Hoffman2006-10-241-14/+5
|
* ENH: remove JavaEmbedding frameworkBill Hoffman2006-10-241-4/+1
|
* BUG: Disable testing of # escapes until it can be implemented for Watcom WMake.Brad King2006-10-241-4/+4
|
* BUG: fix #3955: add -O2 by default but only if no special buildtype is setAlexander Neundorf2006-10-231-4/+10
| | | | Alex
* ENH: Added # character for shell escaping.Brad King2006-10-232-1/+5
|
* ENH: Remove old IF(FILE_IS_NEWER) syntax. It was never in a release anyway.Brad King2006-10-233-27/+0
|
* BUG: Do not display cmake -E usage when any old command line error occurs.Brad King2006-10-231-1/+0
|
* ENH: put in backwards compatibility for older cmakeBill Hoffman2006-10-231-6/+14
|
* ENH: Patch from Alex to provide nicer syntax for FILE_IS_NEWER. Using name ↵Brad King2006-10-233-0/+27
| | | | IS_NEWER_THAN so old syntax will continue to work.
* ENH: remove broken testBill Hoffman2006-10-221-6/+9
|
* COMP: Fixed typo: CMAKE_TEST_CMAKELIB -> COMPLEX_TEST_CMAKELIB.Brad King2006-10-223-15/+15
|
* ENH: Remove old include dirs.Brad King2006-10-191-1/+0
|
* COMP: Fix for building without system xmlrpc installed.Brad King2006-10-191-1/+1
|
* ENH: Adding option to use system-installed third-party libraries. This ↵Brad King2006-10-191-1/+12
| | | | addresses bug#3653.
* ENH: Add options to build with system utility libraries. Organize inclusion ↵Brad King2006-10-1918-73/+322
| | | | of third party libraries into a single header per library. This addresses bug#3653.
* ENH: Adding CMAKE_DEPENDENT_OPTION macro.Brad King2006-10-191-0/+37
|
* ENH: Added explicit name for option to test CMakeLib. Added option to ↵Brad King2006-10-1912-30/+60
| | | | disable testing of CMakeLib if system utility libraries are used until linking made easier.
* ENH: Find module for XMLRPC libraries.Brad King2006-10-191-0/+134
|
* ENH: Find module for EXPAT library.Brad King2006-10-191-0/+38
|
* ENH: Find module for CURL library.Brad King2006-10-191-0/+38
|
* ENH: added total time limit for a CTest run bug 1207Ken Martin2006-10-197-6/+93
|
* ENH: Patch from Jan for bug#3453. Cleans up find script and enables ↵Brad King2006-10-192-41/+43
| | | | -isystem feature for use script.
* ENH: Clarified search behavior when the objective is not found.Brad King2006-10-191-2/+7
|
* BUG: Correct the SystemReportDebugHook function. It should not call exit. It ↵David Cole2006-10-191-5/+5
| | | | gets called multiple times at shutdown in a memory leak reporting scenario... This is the source of the long standing KWWidgetsTour debug build dashboard failure.
* STYLE: Fixed line-too-long.Brad King2006-10-171-1/+2
|
* ENH: Adding image version number (major.minor) property to windows binaries. ↵Brad King2006-10-1615-21/+172
| | | | Default is 0.0, but the VERSION target property may change the value. Windows now has first-class support for dll and exe versioning. This addresses bug#1219.
* BUG: Need to collapse path argument to get_directory_property. This ↵Brad King2006-10-162-0/+8
| | | | addresses bug#3847.
* ENH: Make hyperlinks in documentation active when generated into HTML ↵Brad King2006-10-161-9/+74
| | | | documents. This addresses bug#3906.
* ENH: Allow user project code to distinguish between an install prefix set on ↵Brad King2006-10-161-0/+8
| | | | the command line and one set by CMake as a default. This is useful for changing the default prefix while still allowing the user to override it.
* BUG: partial fix for the progress after install bugKen Martin2006-10-161-22/+30
|
* ENH: update for releaseBill Hoffman2006-10-165-1/+58
|
* ENH: Added OUTPUT_STRIP_TRAILING_WHITESPACE and ↵Brad King2006-10-162-5/+49
| | | | ERROR_STRIP_TRAILING_WHITESPACE options to EXECUTE_PROCESS command. These allow it to behave more like the old EXEC_PROGRAM command that it is supposed to replace.
* BUG: fix for bug# 3310Bill Hoffman2006-10-161-0/+17
|
* STYLE: Fix kwstyleAndy Cedilnik2006-10-153-7/+11
|
* ENH: Properly propagate config type to testAndy Cedilnik2006-10-133-10/+16
|
* BUG: fix for bug#3908 if header_file_only is set on cxx files in visual ↵Bill Hoffman2006-10-131-4/+14
| | | | studio do not compile them
* BUG: Compression must be set before any output is created.Brad King2006-10-131-10/+10
|
* COMP: Fix Sun buildAndy Cedilnik2006-10-131-2/+1
|
* BUG: When using link scripts use native shell escapes instead of makefile ↵Brad King2006-10-131-1/+15
| | | | shell escapes because the script is not interpreted by a make tool.