summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'openbsd-elf-parsing'Brad King2013-06-242-2/+11
|\ | | | | | | | | 480e924 OpenBSD: Enable ELF parsing and editing (#14241)
| * OpenBSD: Enable ELF parsing and editing (#14241)David Coppa2013-06-212-2/+11
| | | | | | | | | | | | | | | | | | OpenBSD provides ELF ABI declarations in #include <stdint.h> #include <elf_abi.h> Teach the platform check and cmELF implementation to use these.
* | Merge topic 'doc-E-tar-zip'Brad King2013-06-241-3/+2
|\ \ | | | | | | | | | | | | ae06f80 cmake: Document "-E tar" support for .zip (#14225)
| * | cmake: Document "-E tar" support for .zip (#14225)Brad King2013-06-191-3/+2
| | | | | | | | | | | | | | | | | | Through use of libarchive internally we support .zip files as well as .tar format. The ExternalProject module makes use of this feature. Document support officially.
* | | Merge topic 'add-cmake_host_system_information-command'Brad King2013-06-243-0/+230
|\ \ \ | | | | | | | | | | | | | | | | bb71a3a Add cmake_host_system_information command
| * | | Add cmake_host_system_information commandNils Gladitz2013-06-193-0/+230
| | | | | | | | | | | | | | | | | | | | | | | | Expose the internal system information API to the CMake language. For example, it is useful to see how much memory the system has available to estimate an upper limit of tests that can run in parallel.
* | | | Merge topic 'add-try_compile-options'Brad King2013-06-242-62/+98
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 482f112 try_compile: Add signature to allow multiple SOURCES
| * | | | try_compile: Add signature to allow multiple SOURCESBrad King2013-06-062-62/+98
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extend the signature try_compile(RESULT_VAR <bindir> <srcfile> ...) to allow multiple sources as try_compile(RESULT_VAR <bindir> SOURCES <srcfile>... ...) Process the sources to generate a CMakeLists.txt that enables all needed languages. Teach the TryCompile test to try cases with two sources of the same language and of mixed languages. Teach RunCMake.try_compile to cover error cases for the signature.
* | | | | Merge topic 'doc-search-install-prefix'Brad King2013-06-241-1/+6
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | a0b37d7 Document CMAKE_INSTALL_PREFIX in CMAKE_SYSTEM_PREFIX_PATH
| * | | | | Document CMAKE_INSTALL_PREFIX in CMAKE_SYSTEM_PREFIX_PATHBrad King2013-06-171-1/+6
| | |/ / / | |/| | | | | | | | | | | | | | | | | | Add documentation to both variables to indicate that the install prefix is also searched.
* | | | | Merge topic 'split-command-sources'Brad King2013-06-247-76/+104
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | b9f4383 Split cmBootstrapCommands.cxx into two sources
| * | | | | Split cmBootstrapCommands.cxx into two sourcesBrad King2013-06-147-76/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The single translation unit has grown too large for some compilers. Split it into cmBootstrapCommands1.cxx and cmBootstrapCommands2.cxx.
* | | | | | Merge topic 'vs-TargetFrameworkVersion'Brad King2013-06-242-0/+12
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | cfe6300 VS: Add support for .NET target framework version
| * | | | | | VS: Add support for .NET target framework versionChristian Maaser2013-06-142-0/+12
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Teach CMake to generate the TargetFrameworkVersion XML node as documented at http://msdn.microsoft.com/en-us/library/vstudio/ff770576.aspx from target property VS_DOTNET_TARGET_FRAMEWORK_VERSION.
* | | | | | CMake Nightly Date StampKitware Robot2013-06-241-1/+1
| | | | | |
* | | | | | CMake Nightly Date StampKitware Robot2013-06-231-1/+1
| | | | | |
* | | | | | CMake Nightly Date StampKitware Robot2013-06-221-1/+1
| |_|_|_|/ |/| | | |
* | | | | CMake Nightly Date StampKitware Robot2013-06-211-1/+1
| | | | |
* | | | | CMake Nightly Date StampKitware Robot2013-06-201-1/+1
| |_|_|/ |/| | |
* | | | CMake Nightly Date StampKitware Robot2013-06-191-1/+1
| | | |
* | | | CMake Nightly Date StampKitware Robot2013-06-181-1/+1
| | | |
* | | | CMake Nightly Date StampKitware Robot2013-06-171-1/+1
| | | |
* | | | CMake Nightly Date StampKitware Robot2013-06-161-1/+1
| | | |
* | | | CMake Nightly Date StampKitware Robot2013-06-151-1/+1
| |/ / |/| |
* | | Merge topic 'doc-enable_language-scope'Brad King2013-06-141-7/+10
|\ \ \ | | | | | | | | | | | | | | | | b3b57e7 enable_language: Clarify documentation
| * | | enable_language: Clarify documentationBrad King2013-06-121-7/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Describe explicitly the scope in which enable_language must be invoked to handle all direct and indirect uses of a language. While at it, re-word documentation of the OPTIONAL keyword to avoid confusion over its partial implementation.
* | | | Merge topic 'sha2-alignment'Brad King2013-06-141-3/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 75994d9 cmCryptoHash: Increase alignment of HashFile buffer
| * | | | cmCryptoHash: Increase alignment of HashFile bufferBrad King2013-06-131-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The SHA512_Update implementation accesses input data via 64-bit integers. This requires alignment of the input buffer on some architectures. Align our stack-allocated buffer for file content to satisfy this requirement.
* | | | | Merge topic 'FixEclipseCorruptProjects'Brad King2013-06-141-6/+9
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 22f7934 Eclipse: fix #14204 and #14205: no file links to directories
| * | | | | Eclipse: fix #14204 and #14205: no file links to directoriesAlex Neundorf2013-06-111-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a source file name is empty, or if it is a directory, don't create a linked resource to it. Alex
* | | | | | Merge topic 'minor-cleanup'Brad King2013-06-143-6/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e3b7eac Style: Don't put an else after a return. ad304a2 cmSystemTools: Fix typo in comment. 08319e0 Genex: Fix indentation in docs.
| * | | | | | Style: Don't put an else after a return.Stephen Kelly2013-06-111-3/+0
| | | | | | |
| * | | | | | cmSystemTools: Fix typo in comment.Stephen Kelly2013-06-111-1/+1
| | | | | | |
| * | | | | | Genex: Fix indentation in docs.Stephen Kelly2013-06-111-2/+2
| | |_|/ / / | |/| | | |
* | | | | | Merge topic 'remove_extra_matches'Brad King2013-06-141-6/+14
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | dc03499 Do not set CMAKE_MATCH_ variables when not neeeded
| * | | | | | Do not set CMAKE_MATCH_ variables when not neeededBill Hoffman2013-06-141-6/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Each call to AddDefinition has overhead for variable watches and such. Avoid extra calls when not needed. This decreases the configure time for ParaView by 10 seconds on my machine. Without the change about 1,000,000 set-to-empty calls were being made. After the change it drops to about 100,000.
* | | | | | | Merge topic 'rpath-on-mac'Brad King2013-06-141-1/+4
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ff01f8b OS X: Improvements for getting install name of dylib.
| * | | | | | | OS X: Improvements for getting install name of dylib.Clinton Stimpson2013-06-061-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the case of a multi-arch dylib where none of the architectures is the host architecture, otool -D returned multiple install names.
* | | | | | | | CMake Nightly Date StampKitware Robot2013-06-141-1/+1
| |_|_|_|_|/ / |/| | | | | |
* | | | | | | CMake Nightly Date StampKitware Robot2013-06-131-1/+1
| | | | | | |
* | | | | | | CMake Nightly Date StampKitware Robot2013-06-121-1/+1
| |_|_|/ / / |/| | | | |
* | | | | | CMake Nightly Date StampKitware Robot2013-06-111-1/+1
| |_|/ / / |/| | | |
* | | | | CMake Nightly Date StampKitware Robot2013-06-101-1/+1
| | | | |
* | | | | CMake Nightly Date StampKitware Robot2013-06-091-1/+1
| | | | |
* | | | | CMake Nightly Date StampKitware Robot2013-06-081-1/+1
| | | | |
* | | | | CMake Nightly Date StampKitware Robot2013-06-071-1/+1
| |_|_|/ |/| | |
* | | | CMake Nightly Date StampKitware Robot2013-06-061-1/+1
| | | |
* | | | Merge topic 'fix-genex-HEAD-target'Brad King2013-06-051-4/+9
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 5b22235 Genex: Fix the HEAD target used for evaluated expressions
| * | | | Genex: Fix the HEAD target used for evaluated expressionsStephen Kelly2013-06-051-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the expression $<TARGET_PROPERTY:prop> appears in the content of a target property, the target that prop is read from is the 'head target' of the expression. In contexts such as evaluating the content of a target property during generation, such as INCLUDE_DIRECTORIES, the 'head target' is the one on which the initial request was made. If evaluating a generator expression which is not a target property content, the target must be explicitly specified. Such contexts include add_custom_command and file(GENERATE). The content might then look like $<TARGET_PROPERTY:tgt,prop> However, as there is no HeadTarget set, any generator expressions evaluated as part of reading prop from tgt which do not specify the tgt directly report an error. Modify the logic of the TARGET_PROPERTY generator expression so that in such contexts, the 'head target' is set to the appropriate target which was first encountered.
* | | | | Merge topic 'xcode-framework-paths'Brad King2013-06-051-11/+7
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 21a0bea Xcode: Fix framework search paths in STATIC library targets (#14191)