summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Split notion of node lists and edge listsBrad King2010-08-257-24/+28
|
* Restore GetTargetDirectDepends const returnBrad King2010-08-253-4/+4
| | | | | The returned set should never be modified. Restore 'const' correctness unnecessarily removed by commit 6903d2df (remove const, 2008-01-30).
* KWSys Nightly Date StampKWSys Robot2010-08-201-1/+1
|
* Merge topic 'remove-EscapeSpaces'Brad King2010-08-197-99/+62
|\ | | | | | | | | | | cb9ea26 Remove cmSystemTools::EscapeSpaces method 5383657 CTest: Avoid use of old EscapeSpaces method
| * Remove cmSystemTools::EscapeSpaces methodBrad King2010-08-183-55/+18
| | | | | | | | | | | | The last remaining call to this method exists only for compatibility. Remove the method and put its implementation inline in place of the last call.
| * CTest: Avoid use of old EscapeSpaces methodBrad King2010-08-184-44/+44
| | | | | | | | | | | | | | | | Refactor how cmCTestMemCheckHandler computes the memory tester command line options to avoid encoding them in a single string just to parse them again. The EscapeSpaces uses backslahes to escape spaces on UNIX platforms, so replace other calls to it in CTest that are used to create human-readable strings with simple double-quoting.
* | Merge topic 'fix-cdash-version-uri'Brad King2010-08-191-3/+7
|\ \ | | | | | | | | | | | | 7dbc1a2 Fix hard-coded CDash URI in version query
| * | Fix hard-coded CDash URI in version queryZach Mullen2010-08-181-3/+7
| |/
* | Merge topic 'msvc-version'Brad King2010-08-193-0/+3
|\ \ | | | | | | | | | | | | 76ed7f0 Set MSVC_VERSION for MSVC 6, 7, 7.1 (#7944)
| * | Set MSVC_VERSION for MSVC 6, 7, 7.1 (#7944)Rolf Eike Beer2010-08-173-0/+3
| | |
* | | Merge topic 'FortranCInterface-doc-typo'Brad King2010-08-191-3/+3
|\ \ \ | | | | | | | | | | | | | | | | e872f5d FortranCInterface: Fix doc typo FC.h -> FCMangle.h
| * | | FortranCInterface: Fix doc typo FC.h -> FCMangle.hBrad King2010-08-171-3/+3
| | | |
* | | | Merge topic 'TimeoutForExecuteProcessInVendorChecking'Brad King2010-08-191-3/+10
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | e6c9bc2 Add timeout to execute_process() in CMAKE_DETERMINE_COMPILER_ID().
| * | | | Add timeout to execute_process() in CMAKE_DETERMINE_COMPILER_ID().Alex Neundorf2010-08-171-3/+10
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In CMAKE_DETERMINE_COMPILER_ID_VENDOR() the compiler is called with various arguments. In some cases, this can make the compiler hang and wait forever for input (e.g. "as -v"). That's why add an timeout so it terminates finally. 10 seconds should be more than enough, this is the time it takes to startup the compiler, which is usually quite fast. Alex
* | | | Merge topic 'CMakeParseArguments'Brad King2010-08-192-71/+167
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | c327cbd Modules: Fix CMakeParseArguments copyright notice 9eb6cc1 Merge branch 'module-notices' into CMakeParseArguments b173b87 Add macro CMakeParseArguments() and use it in FPHSA()
| * | | | Modules: Fix CMakeParseArguments copyright noticeBrad King2010-08-171-2/+3
| | | | | | | | | | | | | | | | | | | | Fix format of the copyright notice to pass the ModuleNoticesTest.
| * | | | Merge branch 'module-notices' into CMakeParseArgumentsBrad King2010-08-173-43/+50
| |\ \ \ \
| * | | | | Add macro CMakeParseArguments() and use it in FPHSA()Alex Neundorf2010-08-142-71/+166
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a macro cmake_parse_arguments() (as discussed on cmake-devel) which can be used in macros or functions to help with parsing its arguments. Detailled docs are included. find_package_handle_standard_args() is the first user of this new macro. Alex
* | | | | | Merge topic 'module-notices'Brad King2010-08-191-1/+1
|\ \ \ \ \ \ | | |/ / / / | |/| | | | | | | | | | | | | | | | c088e7a ModuleNoticesTest: Do not require "Kitware" copyright
| * | | | | ModuleNoticesTest: Do not require "Kitware" copyrightBrad King2010-08-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a module is first contributed Kitware has made no modifications on which to place a copyright. Require the contributor to have a copyright notice, but not specifically by Kitware.
* | | | | | KWSys Nightly Date StampKWSys Robot2010-08-191-1/+1
| |_|_|_|/ |/| | | |
* | | | | KWSys Nightly Date StampKWSys Robot2010-08-181-1/+1
| |_|/ / |/| | |
* | | | Merge topic 'libarchive-wrapper'Brad King2010-08-173-14/+77
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fb41da4 Add Compress compress support to libarchive-wrapper 1a3ad5c Add XZ compress support to libarchive-wrapper b50c159 Add ZIP archive format and LZMA compress support to libarchive-wrapper 4663356 cmArchiveWrite: Fix signed/unsigned again
| * | | | Add Compress compress support to libarchive-wrapperEric NOULARD2010-08-162-0/+9
| | | | |
| * | | | Add XZ compress support to libarchive-wrapperEric NOULARD2010-08-132-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is not needed but it does not cost much to do it for all potentially supported format in libarchive. XZ and LZMA are not builtin libarchive and require external lib but if CMAKE_USE_SYSTEM_LIBARCHIVE is ON then we may get it for free.
| * | | | Add ZIP archive format and LZMA compress support to libarchive-wrapperEric NOULARD2010-08-133-7/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will be needed to use cmArchiveWrire in cmCPackArchiveGenerator with the same feature set as before. Note that adding zip support to libarchive-wrapper would also makes it easy to add a new -E zip command to cmake commands.
| * | | | cmArchiveWrite: Fix signed/unsigned againBrad King2010-08-111-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some stream libraries return size_t from gcount() and some return ssize_t. Add an explicit cast to ios::streamsize for its return value. Also refactor use of nnext to reduce the use of casts.
* | | | | Merge topic 'ImproveAsmCompilerIDDetection'Brad King2010-08-173-14/+51
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b333779 Detect a COMPILER_ID also for ASM. 691fc2b Remove trailing spaces
| * | | | | Detect a COMPILER_ID also for ASM.Alex Neundorf2010-08-153-7/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For assembler, the "compiler ID" cannot be detected by "compiling" a source file, since there is not source file all assemblers understand. Instead the function CMAKE_DETERMINE_COMPILER_ID_VENDOR() is used to run the assembler and check its output. For this the CMAKE_DETERMINE_COMPILER_ID_VENDOR() function had to be extended so that it creates the run directory if it doesn't exist yet. In CMakeASMInformation.cmake now also CMAKE_ASM_COMPILER_ID is used (but there are no such files yet, will come with the support for the IAR toolchain). Alex
| * | | | | Remove trailing spacesAlex Neundorf2010-08-152-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | Alex
* | | | | | Merge topic 'FixEclipseIncludePathParsingWithSpaces'Brad King2010-08-171-18/+32
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cac6edc Fix EclipseCDT parsing of builtin macros with spaces (#10868) 8102dc3 Fix EclipseCDT include path parsing with spaces (#10868)
| * | | | | | Fix EclipseCDT parsing of builtin macros with spaces (#10868)Alex Neundorf2010-08-151-12/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch from dnewmarch Alex
| * | | | | | Fix EclipseCDT include path parsing with spaces (#10868)Alex Neundorf2010-08-151-6/+11
| |/ / / / / | | | | | | | | | | | | | | | | | | Alex
* | | | | | Merge topic 'FixZLIBVersion'Brad King2010-08-171-2/+7
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 75e7278 Fix ZLIB version parsing if no TWEAK version exists
| * | | | | | Fix ZLIB version parsing if no TWEAK version existsAlex Neundorf2010-08-141-2/+7
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ZLIB_VERSION_STRING was "1.2.3.#define ZLIB_VERSION "1.2.3"" here, because the result of the matching for the tweak version was also appended if there was no TWEAK version and the regexp failed, which gives as result not an empty string, but the full string. Now it is only appended if the regexp matches. Alex
* | | | | | Merge topic 'FixSubversionDoc'Brad King2010-08-171-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3e126e4 Change documentation of Subversion_FOUND and SUBVERSION_FOUND.
| * | | | | | Change documentation of Subversion_FOUND and SUBVERSION_FOUND.Alex Neundorf2010-08-141-2/+2
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As discussed on cmake-devel, here Subversion_FOUND is the recommended one. Alex
* | | | | | Merge topic 'fix-issue-11035'Brad King2010-08-171-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | d570ee7 Fix 11035 : debug/release library configuration mistake
| * | | | | | Fix 11035 : debug/release library configuration mistakeMathieu Malaterre2010-08-141-2/+2
| |/ / / / / | | | | | | | | | | | | | | | | | | Thanks to Dimitri Kaparis for report
* | | | | | Merge topic 'python_add_module_scope'Brad King2010-08-171-4/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 42fd9a5 Bug with default library type of Python modules.
| * | | | | | Bug with default library type of Python modules.Marcus D. Hanwell2010-08-131-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The _TARGET_SUPPORTS_SHARED_LIBS variable was being altered outside of the find module, moving it into the function fixes any of these scoping issues. Fix tested and verified in VTK and Titan.
* | | | | | | Merge topic 'tg/BlueGeneP'Brad King2010-08-1715-0/+348
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7083c81 Add platform files for BlueGene/P systems
| * | | | | | | Add platform files for BlueGene/P systemsTodd Gamblin2010-08-1315-0/+348
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | BlueGeneP-base: Internal base shared by static and dynamic files BlueGeneP-static: Platform file for all-static builds BlueGeneP-dynamic: Platform file for "default" dynamic builds
* | | | | | | | Merge topic 'tg/find-ignore-path'Brad King2010-08-179-1/+128
|\ \ \ \ \ \ \ \ | |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | 1221581 Teach find_* commands to ignore some paths
| * | | | | | | Teach find_* commands to ignore some pathsTodd Gamblin2010-08-139-1/+128
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add platform configuration variable CMAKE_SYSTEM_IGNORE_PATH and user configuration variable CMAKE_IGNORE_PATH. These specify a set of directories that will be ignored by all the find commands. Update FindPackageTest so that several cases will fail without a functioning CMAKE_IGNORE_PATH.
* | | | | | | | Merge topic 'CMake-bash-completion'Brad King2010-08-171-0/+190
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1715c96 Improve cmake-completion (install doc, ctest -R completion) e41f813 Proposal for bash-completion support file
| * | | | | | | | Improve cmake-completion (install doc, ctest -R completion)Eric NOULARD2010-08-131-0/+12
| | | | | | | | |
| * | | | | | | | Proposal for bash-completion support fileEric NOULARD2010-08-011-0/+178
| | | | | | | | |
* | | | | | | | | Merge topic 'CPack-APIredesign'Brad King2010-08-1724-128/+181
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bd510fe CPack: Avoid member shadowing after API refactor (part2) 31a313d CPack: Avoid member shadowing after API refactor cd7b8a0 CPack: Refactor API in order to handle multi-file packages
| * | | | | | | | | CPack: Avoid member shadowing after API refactor (part2)Eric NOULARD2010-08-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | After converting method arguments to members we need to avoid use of the same names as local variables and other method arguments. One more fix.