summaryrefslogtreecommitdiff
path: root/Tests/SimpleInstallS2/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* SimpleInstall test now builds an installer package if CTEST_TEST_CPACK is ON ↵David Cole2009-11-161-1/+8
| | | | at the Tests/CMakeLists.txt level.
* ENH: Allow more specification of target file namesBrad King2009-05-011-1/+5
| | | | | | | | | | | | | | This creates target properties ARCHIVE_OUTPUT_NAME, LIBRARY_OUTPUT_NAME, and RUNTIME_OUTPUT_NAME, and per-configuration equivalent properties ARCHIVE_OUTPUT_NAME_<CONFIG>, LIBRARY_OUTPUT_NAME_<CONFIG>, and RUNTIME_OUTPUT_NAME_<CONFIG>. They allow specification of target output file names on a per-type, per-configuration basis. For example, a .dll and its .lib import library may have different base names. For consistency and to avoid ambiguity, the old <CONFIG>_OUTPUT_NAME property is now also available as OUTPUT_NAME_<CONFIG>. See issue #8920.
* ENH: Add install(DIRECTORY) option 'OPTIONAL'Brad King2009-02-241-0/+3
| | | | | | This adds the OPTIONAL option to the install(DIRECTORY) command. It tells the installation rule that it is not an error if the source directory does not exist. See issue #8394.
* ENH: Add UNKNOWN type for IMPORTED librariesBrad King2008-08-181-1/+5
| | | | | | | | | | | | | | | When creating an IMPORTED target for a library that has been found on disk, it may not be known whether the library is STATIC or SHARED. However, the library may still be linked using the file found from disk. Use of an IMPORTED target is still important to allow per-configuration files to be specified for the library. This change creates an UNKNOWN type for IMPORTED library targets. The IMPORTED_LOCATION property (and its per-config equivalents) specifies the location of the library. CMake makes no assumptions about the library that cannot be inferred from the file on disk. This will help projects and find-modules import targets found on disk or specified by the user.
* ENH: Add patch for feature request #6847 - CPack components for NSIS and ↵David Cole2008-06-171-21/+5
| | | | PackageMaker installers. Thanks to Doug Gregor for all the hard work involved with implementing this patch! Also added new test CPackComponents that is conditionally executed only when NSIS or PackageMaker installer builders are available.
* ENH: preclean some warningsKen Martin2008-03-251-0/+1
|
* BUG: Updated SimpleInstall tests for new export/import interface.Brad King2008-01-281-6/+6
|
* ENH: Added FILES_MATCHING option to INSTALL(DIRECTORY). This will help ↵Brad King2008-01-021-0/+13
| | | | install a tree of header files while ignoring non-headers.
* BUG: Fix SimpleInstall test to work with new dependency of package on all.Brad King2008-01-011-0/+1
|
* BUG: Need extra regex to parse sw_vers output on Mac OSX 10.2 (and ↵David Cole2007-11-101-3/+4
| | | | presumably earlier) to avoid running PackageMaker during the SimpleInstall* tests. See comment in CMake/Tests/SimpleInstall/CMakeLists.txt for more info.
* BUG: Fix #5868 - add COMPONENT handling to the SCRIPT and CODE signatures of ↵David Cole2007-10-151-2/+9
| | | | the INSTALL command.
* COMP: Rename the executables for the SimpleInstall tests so that the ↵David Cole2007-10-011-6/+6
| | | | executable files that run during the test do not have the word install in their file names. This allows running the tests on Windows Vista without admin privileges and without adding a manifest containing the asInvoker requestedExecutionLevel element.
* ENH: Disable package test only on OSX < 10.4. Added comment explaining ↵Brad King2007-09-201-6/+17
| | | | reason for timeout.
* ENH: Re-enable packaging part of SimpleInstall-Stage2 test on Apple. Give ↵Brad King2007-09-191-0/+3
| | | | it a long timeout to see what is going on.
* COMP: reenable the installation of the PUBLIC_HEADERsAlexander Neundorf2007-09-191-2/+2
| | | | Alex
* COMP: disable packaging test on Apple, see if this fixes the timeoutsAlexander Neundorf2007-09-171-1/+8
| | | | Alex
* ENH: test install of debug libsBill Hoffman2007-09-171-0/+1
|
* ENH: turn this stuff off to see if it fixes the dashboard on midworldBill Hoffman2007-09-101-2/+2
|
* STYLE: adapt the test to the change from FILENAME to FILEAlexander Neundorf2007-08-301-1/+5
| | | | | | -add a call to the EXPORT() command Alex
* ENH: add test for installing a header marked as PUBLIC_HEADER of a libraryAlexander Neundorf2007-08-271-0/+2
| | | | Alex
* COMP: add a test for exporting and importing targetsAlexander Neundorf2007-08-271-1/+17
| | | | Alex
* COMP: the SimpleInstall test also succeeds on the Mac, so maybe AndysAlexander Neundorf2007-08-271-35/+16
| | | | | | comment is not valid anymore Alex
* ENH: Enable versioned executable test everywhere but XCode.Brad King2007-07-021-1/+3
|
* ENH: Added more install rules to increase coverage of the command.Brad King2007-05-281-1/+15
|
* ENH: Added testing of REGEX option to INSTALL(DIRECTORY). Added tests to ↵Brad King2007-05-251-16/+39
| | | | cover all forms of old-style install commands.
* BUG: Remove spaces from test output paths. Not all make tools can handle ↵Brad King2007-03-121-3/+3
| | | | it. Ths SubDirSpaces test is meant for that purpose anyway.
* ENH: Testing new target properties RUNTIME_OUTPUT_DIRECTORY, ↵Brad King2007-03-121-3/+6
| | | | LIBRARY_OUTPUT_DIRECTORY, and ARCHIVE_OUTPUT_DIRECTORY. This is an incremental fix for bug#2240 and bug#4210.
* ENH: Several CPack fixes. First, allow user to set CMAKE_MODULE_PATH for ↵Andy Cedilnik2006-10-121-1/+2
| | | | 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-111-1/+2
| | | | 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.
* ENH: Added OPTIONAL option to INSTALL command to allow installation of files ↵Brad King2006-10-051-0/+3
| | | | if they exist while ignoring them otherwise. This addresses bug#2922.
* ENH: Add support to INSTALL(DIRECTORY) to install an empty directory. This ↵Brad King2006-08-291-0/+12
| | | | addresses bug#3572.
* ENH: Always do tar.Z since we do have compress now builtinAndy Cedilnik2006-08-241-26/+26
|
* ENH: Added code to remove any bad installations of CVS directories before ↵Brad King2006-08-241-0/+2
| | | | running the test so that one failure does not need manual adjustment to get it to pass again.
* ENH: Added check for bad installation of a CVS directory to test.Brad King2006-08-211-0/+6
|
* BUG: Need to execute sample_script.bat on windows and sample_script otherwise.Brad King2006-08-211-1/+6
|
* ENH: Implemented INSTALL(DIRECTORY) command and added a test. Re-organized ↵Brad King2006-08-211-0/+23
| | | | cmFileCommand's implementation of FILE(INSTALL) a bit to help out. This addresses bug#1694 and partially addresses bug#2691.
* ENH: fix error in if statementBill Hoffman2006-08-101-1/+1
|
* ENH: fix failing testsBill Hoffman2006-08-101-2/+9
|
* ENH: try to fix compress failureBill Hoffman2006-08-091-2/+8
|
* ENH: finally fix the failing test on the dashboard for the past month or soBill Hoffman2006-08-071-1/+7
|
* ENH: Add test for bz2 and check for compressAndy Cedilnik2006-07-281-0/+14
|
* ENH: Added CONFIGURATIONS option to INSTALL command to allow ↵Brad King2006-05-051-0/+16
| | | | per-configuration install rules.
* ENH: Adding COMPONENT option to an INSTALL command call to smoke-test it.Brad King2006-05-051-3/+3
|
* ENH: Updated VS6 generator to use target.GetFullName() to compute target ↵Brad King2006-04-181-1/+4
| | | | file names.
* ENH: Added INSTALL(CODE) mode to allow inline specification of install ↵Brad King2006-04-121-0/+1
| | | | script code. This reduces the need for configuring an install script that needs some variable settings because the install code can set thing up first.
* ENH: add test for mfcBill Hoffman2006-04-101-0/+2
|
* ENH: Added ARCHIVE option to the TARGETS mode of the INSTALL command. It is ↵Brad King2006-03-241-3/+18
| | | | a third option added to RUNTIME and LIBRARY property types. Static libraries and import libraries are now treated as ARCHIVE targets instead of LIBRARY targets. This adds a level of granularity necessary for upcoming features. Also updated the CVS CMake patch level set in CMake_VERSION_PATCH from 4 to 5 to allow users of this version to know whether this incompatible change is present.
* ENH: Add additional subdirectory to improve testing and to allow cleanup ↵Andy Cedilnik2006-03-081-13/+13
| | | | when testing cpack
* COMP: Ok, fix typoAndy Cedilnik2006-03-081-2/+2
|
* ENH: Add testing for cpackAndy Cedilnik2006-03-081-16/+35
|