summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* KWSys Nightly Date StampKWSys Robot2010-06-201-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-06-191-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-06-181-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-06-171-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-06-161-1/+1
|
* Merge branch 'ctest-git-flexibility'Brad King2010-06-153-17/+87
|\
| * ctest_update: Support Git upstream branch rewritesBrad King2010-06-082-14/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | Use 'git fetch' followed by 'git reset' to update the source tree. This is better than 'git pull' because it can handle a rewritten upstream branch and does not leave local modifications. After fetch, parse FETCH_HEAD to find the merge head that 'git pull' would choose to track the upstream branch. Then reset to the selected head. In the normal fast-forward case the behavior remains unchanged. However, now local modifications and commits will be erased, and upstream rewrites are handled smoothly. This ensures that the upstream branch is tested as expected.
| * ctest_update: Support custom Git update commandBrad King2010-06-083-7/+50
| | | | | | | | | | Define CTest configuration variable CTEST_GIT_UPDATE_CUSTOM to set a custom command line for updating Git-managed source trees.
* | Merge branch 'vs10-source-groups'Brad King2010-06-152-0/+53
|\ \
| * | Fix nested source groups with VS 10 (#9863)Christoph Watzl2010-06-112-0/+53
| | | | | | | | | | | | | | | Add intermediate (but empty) source group filters for the container groups.
* | | Merge branch 'coverage_exclusion_from_glob'Brad King2010-06-151-2/+6
|\ \ \
| * | | Extra coverage glob should subtract the explicitly defined excluded filesZach Mullen2010-06-111-2/+6
| |/ /
* | | Merge branch 'tru64-make-includes'Brad King2010-06-152-3/+8
|\ \ \
| * | | Tru64: Use full-path include directives in Makefiles (#10569)Brad King2010-06-142-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tru64's make(1) resolves relative paths in "include" directives with respect to the includer. This is inconsistent with all other known make tools. Note that this make tool treats the path literally so we cannot use our standard FULL path code which escapes spaces. Instead qualify the paths with $(CMAKE_BINARY_DIR) to avoid the problem.
* | | | Merge branch 'tru64-cmOStringStream-vtable'Brad King2010-06-153-1/+19
|\ \ \ \
| * | | | Tru64: Place cmOStringStream vtable uniquely (#10541)Brad King2010-06-103-1/+19
| |/ / / | | | | | | | | | | | | | | | | | | | | GCC places the vtable in the object implementing the first non-pure, non-inline virtual method. Since the symbol is not weak on Tru64, make the location unique by putting the destructor in a single object file.
* | | | Merge branch 'source-file-property-documentation'Brad King2010-06-152-29/+11
|\ \ \ \
| * | | | Document scope of source file propertiesBrad King2010-06-092-29/+11
| | | | | | | | | | | | | | | | | | | | | | | | | Also remove out-dated list of source file properties from the set_source_files_properties command.
* | | | | Merge branch 'mingw-response-files'Brad King2010-06-154-3/+20
|\ \ \ \ \
| * | | | | Use platform variable for response file flagBrad King2010-03-112-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create platform variable "CMAKE_<LANG>_RESPONSE_FILE_LINK_FLAG" to specify an alternative to "@" for referencing response files. It applies specifically to response files with linker options. See issue #10401.
| * | | | | Use forward slashes for objects in response filesBrad King2010-03-113-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Response files are parsed by tools, not by shells. We teach cmLocalGenerator::Convert() a new "RESPONSE" output format and use it for objects listed in response files. It does not do special slash or MSYS root translation like the "SHELL" format does. This is necessary for GNU tools on Windows to understand response file content. See issue #10401.
* | | | | | KWSys Nightly Date StampKWSys Robot2010-06-151-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2010-06-141-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2010-06-131-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2010-06-121-1/+1
| |_|_|/ / |/| | | |
* | | | | KWSys: Teach Process to error on empty commandBrad King2010-06-112-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | Do not try to execute a child with no command line. Previously this led to a silent hang.
* | | | | KWSys: Process tree kill for SolarisBrad King2010-06-111-0/+3
| | | | |
* | | | | KWSys Nightly Date StampKWSys Robot2010-06-111-1/+1
| |_|/ / |/| | |
* | | | KWSys: Configure DynamicLoader library prefix/suffixBrad King2010-06-103-88/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The DynamicLoader::LibPrefix and DynamicLoader::LibExtension methods previously hard-coded the module name components for each platform. Set them from the CMAKE_SHARED_MODULE_PREFIX and CMAKE_SHARED_MODULE_SUFFIX CMake variables instead. This ensures consistency in a program that uses these methods to construct the file names for its own modules.
* | | | KWSys Nightly Date StampKWSys Robot2010-06-101-1/+1
| |/ / |/| |
* | | KWSys Nightly Date StampKWSys Robot2010-06-091-1/+1
| |/ |/|
* | KWSys Nightly Date StampKWSys Robot2010-06-081-1/+1
| |
* | Merge branch 'per-config-link-flags'Brad King2010-06-076-38/+141
|\ \
| * | Xcode: Archives use STATIC_LIBRARY_FLAGS, not LINK_FLAGSBrad King2010-05-281-3/+9
| | | | | | | | | | | | | | | | | | | | | The LINK_FLAGS property is defined only for targets that really link. These include executables and shared libraries. For static libraries we define the STATIC_LIBRARY_FLAGS property. Teach the Xcode generator to make this distinction.
| * | Add STATIC_LIBRARY_FLAGS_<CONFIG> property (#10768)Brad King2010-05-285-6/+73
| | | | | | | | | | | | This is a per-configuration version of STATIC_LIBRARY_FLAGS.
| * | Implement LINK_FLAGS_<CONFIG> in VS 10 generatorBrad King2010-05-281-0/+14
| | | | | | | | | | | | | | | Add support for the per-config LINK_FLAGS property in VS 10. This was simply missing.
| * | Fix LINK_FLAGS_<CONFIG> in VS 6 generatorBrad King2010-05-281-29/+45
| | | | | | | | | | | | Add the flags to the link step, not the compile step!
* | | Merge branch 'ctest-update-git-submodule'Brad King2010-06-071-1/+1
|\ \ \
| * | | Fix ctest_update log prefix for git submodule updateBrad King2010-06-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 67277bac (Teach ctest_update about Git submodules, 2010-05-04) accidentally logged "git submodule update" with the prefixes "pull-out" and "pull-err". Fix it to use "submodule-out" and "submodule-err" instead.
* | | | Merge branch 'cpack-remove-temp-dir'Brad King2010-06-073-2/+20
|\ \ \ \
| * | | | CPack: Try harder to remove temporary dir (#10793)Brad King2010-06-043-2/+20
| | | | | | | | | | | | | | | | | | | | | | | | | Windows filesystems sometimes lock files temporarily. Try removing the CPack temp install folder multiple times before giving up.
* | | | | Merge branch 'file-write-umask'Brad King2010-06-072-24/+18
|\ \ \ \ \
| * | | | | Borland: No S_IWGRP is availableBrad King2010-06-032-0/+4
| | | | | |
| * | | | | Really trust umask in file(WRITE) command (#10789, #10126)Brad King2010-06-032-24/+14
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 8d0161c8 (Trust umask for file permissions, 2010-01-12) taught these commands to set permissions to 0666 explicitly. The intention was to let the open() call inside ofstream handle permsisions so that umask would be honored. Now we set permissions only when we need to preserve those on an existing file. New files will be created with umask-based permissions.
* | | | | Merge branch 'improve-file-download'Brad King2010-06-072-18/+251
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Modules/ExternalProject.cmake
| * | | | | Allow redirects: set CURLOPT_FOLLOWLOCATION to 1David Cole2010-06-041-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enable file(DOWNLOAD ...) to follow redirects. Thanks to Michael Wild for requesting the addition and providing the majority of the patch.
| * | | | | Fix unused variable warning in new code.David Cole2010-05-271-0/+3
| | | | | |
| * | | | | Improve FILE(DOWNLOAD) and ExternalProject.David Cole2010-05-272-18/+239
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improve FILE(DOWNLOAD ...): - Add percent complete progress output to the FILE DOWNLOAD command. This progress output is off by default to preserve existing behavior. To turn it on, pass SHOW_PROGRESS as an argument. - Add EXPECTED_MD5 argument. Verify that the downloaded file has the expected md5 sum after download is complete. - Add documentation for SHOW_PROGRESS and EXPECTED_MD5. When the destination file exists already and has the expected md5 sum, then do not bother re-downloading the file. ("Short circuit" return.) Also, add a test that checks for the status output indicating that the short circuit behavior is actually occurring. Use a binary file for the test so that the md5 sum is guaranteed to be the same on all platforms regardless of "shifting text file line ending" issues. Improve ExternalProject: - Add argument URL_MD5. - Add verify step that compares md5 sum of .tar.gz file before extracting it. - Add md5 check to download step, too, to prevent unnecessary downloads. - Emit a warning message when a file is not verified. Indicate that the file may be corrupt or that no checksum was specified.
* | | | | Merge branch 'add-git-to-ExternalProject'Brad King2010-06-071-0/+22
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Modules/ExternalProject.cmake
| * | | | | Fix failing ExternalProject test on Borland dashboards.David Cole2010-06-031-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If there is a .bat or .cmd file used as a custom command then the Borland Makefiles generator (specifically) requires using the "call " syntax before the name of the .bat or .cmd file. This fix applies to all Makefile based generators where WindowsShell is true.