summaryrefslogtreecommitdiff
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* 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-051-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)
| * | | | | Xcode: Fix framework search paths in STATIC library targets (#14191)Brad King2013-06-041-11/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In commit 2bc22bda (Xcode: Add frameworks search paths from link dependeny closure, 2012-12-07) we made framework search paths from the link closure conditional on target type, skipping it on STATIC and OBJECT library targets that do not actually link. However, the framework search paths also influence the compile lines (-F options) so we need them for all target types. The Makefile generator already does this, as did the Xcode generator prior to the above-mentioned commit.
* | | | | | Merge topic 'update-kwsys'Brad King2013-06-051-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | c91e88d Merge branch 'upstream-kwsys' into update-kwsys 6dc3dd9 KWSys 2013-06-03 (d79a792e)
| * | | | | | Merge branch 'upstream-kwsys' into update-kwsysBrad King2013-06-041-1/+1
| | | | | | |
* | | | | | | Merge topic 'doc-CMAKE_PARENT_LIST_FILE'Brad King2013-06-051-5/+6
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b62d440 Docs: Clarify CMAKE_PARENT_LIST_FILE (#14194)
| * | | | | | | Docs: Clarify CMAKE_PARENT_LIST_FILE (#14194)Brad King2013-06-041-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix the wording of the documentation for CMAKE_PARENT_LIST_FILE to clarify that it only applies to the include stack in the current directory. Specify exactly what commands can include files instead of saying "somehow invoke".
* | | | | | | | Merge topic 'suppress-unused-cli-with-value-in-cache'Brad King2013-06-052-1/+16
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 273ecab CLI: Suppress the unused warning if the key value pair is cached.
| * | | | | | | | CLI: Suppress the unused warning if the key value pair is cached.Stephen Kelly2013-06-042-1/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is common to specify a CMAKE_TOOLCHAIN_FILE and get a warning for using it despite it not being used. The WarnUnusedCliUnused test relies on the warning being emitted each time cmake is run on an existing build. That behavior is changed by this patch to warn only on the first invokation of CMake, and not on subsequent invokations (because the variable is in the cache with the same value). For that test, a clean target is added which clears the cache and cause the warning to be emitted each time. As the Ninja generator does not support the feature needed to test this, it is not tested with that generator.
* | | | | | | | | Merge topic 'cleanups'Brad King2013-06-052-8/+6
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9efe359 Add some spaces to the INCLUDE_DIRECTORIES documentation. db15713 Remove unused cmAddDefinitionsCommand::ParseDefinition method.
| * | | | | | | | | Add some spaces to the INCLUDE_DIRECTORIES documentation.Stephen Kelly2013-06-041-6/+6
| | | | | | | | | |
| * | | | | | | | | Remove unused cmAddDefinitionsCommand::ParseDefinition method.Stephen Kelly2013-06-041-2/+0
| | | | | | | | | |
* | | | | | | | | | Merge topic 'add_compile_options-command'Brad King2013-06-056-1/+177
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a984f32 Introduce add_compile_options command.
| * | | | | | | | | | Introduce add_compile_options command.Stephen Kelly2013-06-046-1/+177
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This command is similar to add_definitions, in that it affects the compile options of all targets which follow it. The implementation is similar to the implementation of the include_directories command, in that it is based on populating a COMPILE_OPTIONS directory property and using that to initialize the same property on targets. Unlike the include_directories command however, the add_compile_options command does not affect previously defined targets. That is, in the following code, foo will not be compiled with -Wall, but bar will be: add_library(foo ...) add_compile_options(-Wall) add_library(bar ...)
* | | | | | | | | | Merge topic 'VISIBILITY_PRESET-property'Brad King2013-06-056-0/+119
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cd1fa53 Add a COMPILE_OPTION for a VISIBILITY_INLINES_HIDDEN target property. 0e9f4bc Introduce target property <LANG>_VISIBILITY_PRESET
| * | | | | | | | | | Add a COMPILE_OPTION for a VISIBILITY_INLINES_HIDDEN target property.Stephen Kelly2013-06-022-20/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This corresponds to the g++ and clang++ option -fvisibility-inlines-hidden on linux. On Windows with MinGW, this corresponds to -fno-keep-inline-dllexport. That option is not supported by clang currently.
| * | | | | | | | | | Introduce target property <LANG>_VISIBILITY_PRESETStephen Kelly2013-06-026-0/+80
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is initialized by CMAKE_<LANG>_VISIBILITY_PRESET. The target property is used as the operand to the -fvisibility= compile option with GNU compilers and clang.
* | | | | | | | | | | CMake Nightly Date StampKitware Robot2013-06-051-1/+1
| | | | | | | | | | |
* | | | | | | | | | | Merge topic 'fix-variable_watch-cases'Brad King2013-06-042-18/+4
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 647745b variable_watch: Print accesses as "CMake Debug Log" messages 515f9af variable_watch: Remove leftover debugging code (#14187) c63d300 variable_watch: Add test for MODIFIED_ACCESS report 3d5bb38 variable_watch: Add missing string enumeration entry (#14188)