summaryrefslogtreecommitdiffstats
path: root/Tests/ComplexOneConfig
Commit message (Collapse)AuthorAgeFilesLines
* Switch to using libarchive from libtar for cpack and cmake -E tarBill Hoffman2009-10-301-2/+5
| | | | | | This allows for a built in bzip and zip capability, so external tools will not be needed for these packagers. The cmake -E tar xf should be able to handle all compression types now as well.
* Make Complex test of CMakeLib more optionalBrad King2009-10-071-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: only 5 failing tests for VS 10Bill Hoffman2009-07-101-2/+2
|
* ENH: Remove CMAKE_ANSI_CFLAGS from testsBrad King2009-07-082-8/+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: Always imply CLEAN_DIRECT_OUTPUT target propBrad King2009-05-011-1/+1
| | | | | | | | | | | | | | This property was left from before CMake always linked using full path library names for targets it builds. In order to safely link with "-lfoo" we needed to avoid having both shared and static libraries in the build tree for targets that switch on BUILD_SHARED_LIBS. This meant cleaning both shared and static names before creating the library, which led to the creation of CLEAN_DIRECT_OUTPUT to disable the behavior. Now that we always link with a full path we do not need to clean old library names left from an alternate setting of BUILD_SHARED_LIBS. This change removes the CLEAN_DIRECT_OUTPUT property and instead uses its behavior always. It removes some complexity from cmTarget internally.
* ENH: Allow projects to disable per-rule echo linesBrad King2009-03-161-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 progressBrad King2009-03-161-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: make this test pass if new curl is onBill Hoffman2008-11-211-1/+1
|
* ENH: only link in curl directories that exist, this will help with vs6 nmakeBill Hoffman2008-11-201-3/+6
|
* ENH: make it work if new curl is onBill Hoffman2008-11-191-4/+3
|
* ENH: make it work if new curl is onBill Hoffman2008-11-181-1/+5
|
* ENH: Add if(TARGET) commandBrad King2008-08-202-0/+21
| | | | | | | | | | 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.
* ENH: Add cmake_policy(GET) command modeBrad King2008-08-181-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 #6191Ken Martin2008-06-263-0/+16
|
* ENH: Add "if(POLICY policy-id)" option for IF command.Brad King2008-03-201-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: Updated DEFINE_PROPERTY command to be more extendible and more ↵Brad King2008-02-141-2/+5
| | | | consistent with new SET_PROPERTY and GET_PROPERTY signatures.
* ENH: complex must link to curl nowBill Hoffman2008-02-071-1/+2
|
* ENH: Implement linking with paths to library files instead of -L and -l ↵Brad King2008-01-221-115/+3
| | | | | | | | | | | | | | | | | separation. See bug #3832 - This is purely an implementation improvement. No interface has changed. - Create cmComputeLinkInformation class - Move and re-implement logic from: cmLocalGenerator::ComputeLinkInformation cmOrderLinkDirectories - Link libraries to targets with their full path (if it is known) - Dirs specified with link_directories command still added with -L - Make link type specific to library names without paths (name libfoo.a without path becomes -Wl,-Bstatic -lfoo) - Make directory ordering specific to a runtime path computation feature (look for conflicting SONAMEs instead of library names) - Implement proper rpath support on HP-UX and AIX.
* ENH: Make per-configuration COMPILE_DEFINITIONS_<CONFIG> directory property ↵Brad King2008-01-182-1/+9
| | | | initialized from parent.
* ENH: Adding test for using HEADER_FILE_ONLY to avoid building a .cxx file.Brad King2007-11-192-1/+6
|
* ENH: fix leakBill Hoffman2007-08-211-0/+1
|
* ENH: user more memory for parser and add test to complex that sets a huge stringBill Hoffman2007-07-201-0/+1
|
* BUG: Disable test of feature that is not documented or implemented everywhere.Brad King2007-05-162-1/+4
|
* BUG: Fixed cmLocalVisualStudio7Generator to deal with quotes in macro ↵Brad King2007-05-092-1/+15
| | | | definitions properly. This addresses bug#4983.
* ENH: Testing new target properties RUNTIME_OUTPUT_DIRECTORY, ↵Brad King2007-03-123-9/+11
| | | | LIBRARY_OUTPUT_DIRECTORY, and ARCHIVE_OUTPUT_DIRECTORY. This is an incremental fix for bug#2240 and bug#4210.
* ENH: Added smoke test for user-value flag mapping for VS IDE.Brad King2007-02-011-0/+6
|
* ENH: make properties a bit more formal with documentation and chainingKen Martin2006-12-071-0/+2
|
* ENH: merge in changes for beos supportBill Hoffman2006-12-041-1/+3
|
* ENH: Added test case for bug#3966.Brad King2006-10-301-0/+11
|
* COMP: Fixed typo: CMAKE_TEST_CMAKELIB -> COMPLEX_TEST_CMAKELIB.Brad King2006-10-221-5/+5
|
* ENH: Added explicit name for option to test CMakeLib. Added option to ↵Brad King2006-10-194-10/+20
| | | | disable testing of CMakeLib if system utility libraries are used until linking made easier.
* BUG: Fix link flags on cygwin shared libraries. This requires that the ↵Brad King2006-10-051-1/+1
| | | | shared library prefix be supported in the link library regex.
* BUG: Test -isystem without affecting other tests. Made separate ↵Brad King2006-10-052-1/+2
| | | | Library/SystemDir for this purpose.
* BUG: Run testSystemDir test only if -isystem flag is available.Brad King2006-10-051-2/+2
|
* ENH: Adding SYSTEM option to INCLUDE_DIRECTORIES command. This addresses ↵Brad King2006-10-054-2/+12
| | | | bug #3462.
* ENH: Renamed NOT_IN_ALL to EXCLUDE_FROM_ALL.Brad King2006-10-022-2/+2
|
* ENH: Added NOT_IN_ALL option for ADD_LIBRARY and ADD_EXECUTABLE to avoid ↵Brad King2006-10-024-0/+26
| | | | building the targets by default.
* ENH: Re-enabling .i rule test on MSYS now that it works.Brad King2006-09-281-5/+0
|
* ENH: Re-enable preprocessing target test but specifically disable it on ↵Brad King2006-09-271-1/+16
| | | | broken platforms.
* BUG: Disable new test_preprocess target until it is fixed on OSX universal ↵Brad King2006-09-241-1/+1
| | | | binaries and mingw.
* ENH: Adding test for running preprocessor rules.Brad King2006-09-232-0/+18
|
* ENH: added test for elseifKen Martin2006-09-223-0/+48
|
* ENH: Added test for linking to a static library that is next to a shared ↵Brad King2006-09-154-1/+39
| | | | library. See bug#1644 for related changes.
* BUG: Make sure sources with unknown extensions are not compiled by VS.Brad King2006-08-032-1/+2
|
* ENH: Adding test for source files and header files with the same base name ↵Brad King2006-08-014-2/+11
| | | | in the same target.
* BUG: Fix REMOVE_DEFINITIONS command to not remove substrings.Brad King2006-05-232-0/+20
|
* BUG: INCLUDE_DIRECTORIES should interpret relative path arguments with ↵Brad King2006-05-121-1/+1
| | | | respect to the current source directory.
* BUG: Disabling an EXECUTE_PROCESS test until problems on UNIX systems are fixed.Brad King2006-05-081-13/+16
|
* ENH: remove duplicate file name test because it fails on xcodeBill Hoffman2006-04-172-2/+6
|
* ENH: allow multiple files with the same name in different sub dirs testBill Hoffman2006-04-174-2/+23
|