summaryrefslogtreecommitdiffstats
path: root/Tests
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Added PrecompiledHeader test for MSVC compilers.Brad King2007-02-086-0/+88
|
* ENH: Added smoke test for user-value flag mapping for VS IDE.Brad King2007-02-013-0/+18
|
* ENH: add more output when test failsBill Hoffman2007-01-311-4/+4
|
* ENH: try to fix test on watcomBill Hoffman2006-12-303-1/+11
|
* ENH: removed old VTK testsKen Martin2006-12-121-67/+0
|
* ENH: do not use svn until it is working againBill Hoffman2006-12-121-1/+2
|
* ENH: fix test for config dir based stuffBill Hoffman2006-12-071-1/+2
|
* ENH: make properties a bit more formal with documentation and chainingKen Martin2006-12-075-4/+22
|
* ENH: fix bug in full path to target depends stuffBill Hoffman2006-12-072-0/+26
|
* ENH: merge in changes for beos supportBill Hoffman2006-12-043-3/+9
|
* BUG: better fix for .dll.lib problemBill Hoffman2006-11-301-1/+6
|
* ENH: make it work for hpBill Hoffman2006-11-301-1/+1
|
* ENH: add extern for hp c compilerBill Hoffman2006-11-303-3/+3
|
* ENH: fix test to run with debug or release and put the exe next to the dll, ↵Bill Hoffman2006-11-301-0/+1
| | | | still shows the bug this is testing for
* ENH: fix errors for unix buildsBill Hoffman2006-11-293-4/+17
|
* BUG: fix a problem where it tried to link .dll.lib filesBill Hoffman2006-11-294-0/+22
|
* ENH: make sure things do not depend on optimized libraries if they are ↵Bill Hoffman2006-11-271-0/+5
| | | | debug, and the other way around as well
* ENH: add a test for a target name with the same name as the output of a ↵Bill Hoffman2006-11-276-0/+26
| | | | custom command
* ENH: make sure it is qt3 before running testBill Hoffman2006-11-221-2/+2
|
* ENH: make sure findqt3 finds qt3 and not qt4Bill Hoffman2006-11-221-1/+1
|
* ENH: Added test case for bug#3966.Brad King2006-10-303-0/+33
|
* ENH: Re-enabling # escape test now that it is implemented everywhere.Brad King2006-10-251-4/+4
|
* BUG: EQUAL -> STREQUAL for string comparison.Brad King2006-10-251-3/+3
|
* BUG: Attempt to fix the testAndy Cedilnik2006-10-251-2/+2
|
* BUG: Disable testing of # escapes until it can be implemented for Watcom WMake.Brad King2006-10-241-4/+4
|
* ENH: Added # character for shell escaping.Brad King2006-10-231-0/+4
|
* ENH: Remove old IF(FILE_IS_NEWER) syntax. It was never in a release anyway.Brad King2006-10-231-3/+0
|
* ENH: Patch from Alex to provide nicer syntax for FILE_IS_NEWER. Using name ↵Brad King2006-10-231-0/+3
| | | | IS_NEWER_THAN so old syntax will continue to work.
* COMP: Fixed typo: CMAKE_TEST_CMAKELIB -> COMPLEX_TEST_CMAKELIB.Brad King2006-10-223-15/+15
|
* 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.
* BUG: Need to collapse path argument to get_directory_property. This ↵Brad King2006-10-161-0/+4
| | | | addresses bug#3847.
* ENH: Properly propagate config type to testAndy Cedilnik2006-10-131-1/+1
|
* ENH: Several CPack fixes. First, allow user to set CMAKE_MODULE_PATH for ↵Andy Cedilnik2006-10-122-0/+20
| | | | CPack; make SetOptionIfNotSet more robust to handle empty options; do test TGZ, STGZ, and TZ, Add handling (and test) of Install Script; set environment variable CMAKE_INSTALL_PREFIX
* ENH: Several CPack fixes. First, allow user to set CMAKE_MODULE_PATH for ↵Andy Cedilnik2006-10-122-2/+4
| | | | CPack; make SetOptionIfNotSet more robust to handle empty options; do test TGZ, STGZ, and TZ, Add handling (and test) of Install Script; set environment variable CMAKE_INSTALL_PREFIX
* BUG: Do not collapse the INSTALL_NAME_DIR setting because users may intend ↵Brad King2006-10-112-2/+4
| | | | to have .. in the path. This makes the makefile generator consistent with the already working Xcode implementation of this feature. Also added a test for @executable_path/.. style settings for this property.
* BUG: Fixed out-of-source subdirectories to work when they are also ↵Brad King2006-10-105-1/+15
| | | | out-of-binary. Updated the OutOfSource test to test this feature.
* BUG: Fix link flags on cygwin shared libraries. This requires that the ↵Brad King2006-10-053-3/+3
| | | | shared library prefix be supported in the link library regex.
* BUG: Test -isystem without affecting other tests. Made separate ↵Brad King2006-10-056-3/+6
| | | | Library/SystemDir for this purpose.
* ENH: Added OPTIONAL option to INSTALL command to allow installation of files ↵Brad King2006-10-052-0/+6
| | | | if they exist while ignoring them otherwise. This addresses bug#2922.
* BUG: Run testSystemDir test only if -isystem flag is available.Brad King2006-10-053-6/+6
|
* ENH: Adding SYSTEM option to INCLUDE_DIRECTORIES command. This addresses ↵Brad King2006-10-0512-6/+36
| | | | bug #3462.
* ENH: Adding test of special characters in custom command and custom target ↵Brad King2006-10-041-1/+2
| | | | comments.
* ENH: Added COMMENT option to ADD_CUSTOM_TARGET. This addresses bug#3461.Brad King2006-10-041-0/+1
|
* ENH: Added APPEND option to ADD_CUSTOM_COMMAND to allow extra dependencies ↵Brad King2006-10-041-1/+3
| | | | to be connected later. This is useful to create one rule and then have a macro add things to it later. This addresses bug#2151.
* BUG: Do not replace @VAR@ syntax in list files. This addresses bug #2722.Brad King2006-10-041-2/+2
|
* ENH: Renamed NOT_IN_ALL to EXCLUDE_FROM_ALL.Brad King2006-10-026-6/+6
|
* ENH: Added NOT_IN_ALL option for ADD_LIBRARY and ADD_EXECUTABLE to avoid ↵Brad King2006-10-0212-0/+78
| | | | building the targets by default.
* COMP: Fix command line check test implementation for Watcom.Brad King2006-10-022-0/+3
|
* ENH: Added VERBATIM option to ADD_CUSTOM_COMMAND and ADD_CUSTOM_TARGET ↵Brad King2006-09-282-2/+35
| | | | commands. This option enables full escaping of custom command arguments on all platforms. See bug#3786.
* ENH: Re-enabling .i rule test on MSYS now that it works.Brad King2006-09-283-15/+0
|