summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* CPackDeb: Handle dirs for CONTROL_EXTRA correctly when packaging componentsMartin Konrad2011-04-091-1/+1
| | | | | | Copy the files specified in CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA to the right directory when packaging components. This fixes #12061. Signed-off-by: Eric NOULARD <eric.noulard@gmail.com>
* KWSys Nightly Date StampKWSys Robot2011-04-091-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-04-081-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-04-071-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-04-061-1/+1
|
* Merge topic 'drag-n-drop-components'Brad King2011-04-054-7/+114
|\ | | | | | | | | | | dd04608 Fix KWStyle warnings 2973c1f Add component support to DragNDrop generator.
| * Fix KWStyle warningsEric NOULARD2011-04-012-9/+19
| |
| * Add component support to DragNDrop generator.Clinton Stimpson2011-03-314-6/+103
| |
* | Merge topic 'cpack-grouping-enum'Brad King2011-04-055-48/+97
|\ \ | | | | | | | | | | | | | | | 9c43824 Fix KWStyle warnings 64a5e20 Combine component packaging methods into an enum.
| * | Fix KWStyle warningsEric NOULARD2011-04-045-14/+20
| |/
| * Combine component packaging methods into an enum.Clinton Stimpson2011-03-315-43/+86
| | | | | | | | | | Also allow generators to override the default packaging method. Add a ONE_PER_GROUP option so that method can be specified by the user without relying on defaults.
* | Merge topic 'fix_vs10_object_files'Brad King2011-04-051-5/+21
|\ \ | | | | | | | | | | | | 9a6ff95 Fix for bug where VS2010 did not use .obj files as part of the build.
| * | Fix for bug where VS2010 did not use .obj files as part of the build.Bill Hoffman2011-04-011-5/+21
| | | | | | | | | | | | | | | | | | | | | For VS2010 if a precompiled .obj file was the output of a custom commad, it was used as part of the build. If it was not, then VS did not use it as part of the build. This commit updates the test to check for this issue, and fixes the problem. This fixes bugs #0011891 and
* | | Merge topic 'upload-built-files'Brad King2011-04-0511-48/+345
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3e32db7 cmCTestUploadCommand::CheckArgumentKeyword should return false if not FILES 6b6f309 Add the FILES keyword to ctest_upload command 28cdd0a Don't tar/gz ctest_upload() files fbe4356 Change 'Files' tag to 'Upload' in Upload.xml 350546d Implement ctest_upload command
| * | | cmCTestUploadCommand::CheckArgumentKeyword should return false if not FILESZach Mullen2011-03-311-1/+1
| | | |
| * | | Add the FILES keyword to ctest_upload commandZach Mullen2011-03-152-13/+31
| | | |
| * | | Don't tar/gz ctest_upload() filesZach Mullen2011-03-153-5/+15
| | | |
| * | | Change 'Files' tag to 'Upload' in Upload.xmlZach Mullen2011-03-151-2/+2
| | | |
| * | | Implement ctest_upload commandZach Mullen2011-03-1511-48/+317
| | | |
* | | | KWSys Nightly Date StampKWSys Robot2011-04-051-1/+1
| | | |
* | | | KWSys Nightly Date StampKWSys Robot2011-04-041-1/+1
| | | |
* | | | KWSys Nightly Date StampKWSys Robot2011-04-021-1/+1
| |/ / |/| |
* | | KWSys Nightly Date StampKWSys Robot2011-04-011-2/+2
| |/ |/|
* | Merge topic 'custom-command-slashes'Brad King2011-03-313-5/+14
|\ \ | | | | | | | | | | | | 1286050 Normalize slashes of add_custom_(command|target) DEPENDS (#11973)
| * | Normalize slashes of add_custom_(command|target) DEPENDS (#11973)Brad King2011-03-303-5/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All commands accepting file paths should normalize the slashes so that the string-represented names can be compared reliably. The commands add_library and add_executable have done this for years. We taught add_custom_command to normalize its OUTPUT names in commit a75a0a14 (Normalize add_custom_command OUTPUT names, 2010-12-15). We handled a special case of the DEPENDS option in commit 7befc007 (Handle trailing slashes on add_custom_command DEPENDS, 2011-01-26). Teach both add_custom_command and add_custom_target to normalize slashes of DEPENDS files up front. This approach subsumes the above-mentioned special case so remove the one line added for it but keep its test. Extend the CustomCommand test to check that slash count mismatches between custom command OUTPUT and DEPENDS can still be linked correctly.
* | | Merge topic 'fix_long_filenames_vs2010'Brad King2011-03-311-10/+1
|\ \ \ | | | | | | | | | | | | | | | | 945f2c2 With very long file names, VS 2010 was unable to compile files.
| * | | With very long file names, VS 2010 was unable to compile files.Bill Hoffman2011-03-231-10/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | At some point in the past VS 2010 failed some tests with custom commands when relative paths were not used. It seems that those problems have been fixed. However, the relative paths apparently are appended to the current working directoy before vs accesses the file. So, with a long path, relative paths cause it to create a combined path that is too long.
* | | | Merge topic 'cleanup-unused-variable-check'Brad King2011-03-313-26/+27
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | a4335a6 Fix unused cache warning after multiple configure iterations a75ebe3 Refine unused cache variable warning
| * | | | Fix unused cache warning after multiple configure iterationsBrad King2011-03-241-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The curses dialog (ccmake) allows variables to be specified on the command line. If any of these variables is used during any configure iteration or during generate we must not warn about it. The Qt dialog (cmake-gui) allows variables to be added and removed in the GUI interactively. If a variable is added, removed, and then added again we must still warn if it is unused.
| * | | | Refine unused cache variable warningBrad King2011-03-243-24/+22
| | | | | | | | | | | | | | | | | | | | | | | | | List all unused variables in one warning. Cleanup implementation to run the check exactly once at the end of generation.
* | | | | Merge topic 'CPack-fix11930-LeftOverComponents'Brad King2011-03-318-259/+173
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 6dfc818 CPack fix #11930 and simplifies component packaging options
| * | | | | CPack fix #11930 and simplifies component packaging optionsEric NOULARD2011-03-238-259/+173
| | | | | |
* | | | | | Merge topic 'doc-include_directories-typo-issue-12020'Brad King2011-03-311-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 84b7d92 Fix typo in include_directories documentation (#12020)
| * | | | | | Fix typo in include_directories documentation (#12020)Brad King2011-03-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A search-and-replace in commit 8d32d229 (make commands lower case by default, 2007-10-10) accidentally changed the variable reference CMAKE_INCLUDE_DIRECTORIES_BEFORE to CMAKE_include_directories_BEFORE. Change it back.
* | | | | | | Merge topic 'generator-expression-dot-in-name-issue-12002'Brad King2011-03-311-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 08428ba Allow '.' in target names in generator expressions (#12002)
| * | | | | | | Allow '.' in target names in generator expressions (#12002)Brad King2011-03-221-1/+1
| | |_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | Simply add this character to the allowed list in the regular expression used to parse generator expression components.
* | | | | | | KWSys Nightly Date StampKWSys Robot2011-03-311-1/+1
| | | | | | |
* | | | | | | KWSys Nightly Date StampKWSys Robot2011-03-301-1/+1
| | | | | | |
* | | | | | | KWSys: Recognize rxvt-unicode-256color terminal (#12013)Brad King2011-03-291-0/+1
| |/ / / / / |/| | | | | | | | | | | | | | | | | Author: Matti Niemenmaa
* | | | | | KWSys Nightly Date StampKWSys Robot2011-03-291-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2011-03-281-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2011-03-271-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2011-03-261-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2011-03-251-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2011-03-241-1/+1
| | | | | |
* | | | | | KWSys: Do not trust EXECUTABLE_OUTPUT_PATH for ProcessFwd9x encodingBrad King2011-03-231-8/+4
| |_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | Set target property RUNTIME_OUTPUT_DIRECTORY explicitly on ProcessFwd9x and EncodeExecutable so that we know exactly where the executables will exist on disk.
* | | | | KWSys Nightly Date StampKWSys Robot2011-03-231-1/+1
| |/ / / |/| | |
* | | | Merge topic 'CPackDeb-fixTestCrash'Brad King2011-03-222-5/+14
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 21007f8 CPack fix CPackDeb crash when CPackDeb.cmake ends with a FATAL_ERROR
| * | | | CPack fix CPackDeb crash when CPackDeb.cmake ends with a FATAL_ERROREric NOULARD2011-03-192-5/+14
| | | | |
* | | | | Merge topic 'include-flags-response-file'Brad King2011-03-229-18/+90
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 86cb17b Pass include directories with response files to GNU on Windows 9a0b9bc Optionally pass include directories with response files 6e8a67f Generate target-wide flags before individual build rules d099546 Factor old-style -D flags out from -I flag generation