summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* Provide macro write_basic_config_version_file()Alex Neundorf2011-08-011-0/+3
| | | | | | | | | | | This macro can be used to generate basic version files which can be installed along a Config.cmake file to provide versioning support. This (3rd try) is implemented using a macro, which maps the COMPATIBILITY mode to a filename and configure_file()s the resulting file. Alex
* KWSys Nightly Date StampKWSys Robot2011-08-011-2/+2
|
* KWSys Nightly Date StampKWSys Robot2011-07-311-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-07-301-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-07-291-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-07-281-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-07-271-1/+1
|
* Merge topic 'effective-platform-name'Brad King2011-07-263-9/+31
|\ | | | | | | | | | | 74c73d5 Correct KWStyle line too long error 0c030ef Add use of EFFECTIVE_PLATFORM_NAME to generated Xcode projects.
| * Correct KWStyle line too long errorDavid Cole2011-07-191-1/+2
| |
| * Add use of EFFECTIVE_PLATFORM_NAME to generated Xcode projects.David Cole2011-07-183-9/+30
| | | | | | | | | | Facilitates building iOS projects, enabling switching back and forth between simulator and device builds at development time.
* | Merge topic 'SetPropertyAppendString'Brad King2011-07-2618-35/+55
|\ \ | | | | | | | | | | | | 9dbba1b Fix #12342: Add APPEND_STRING option to set_property()
| * | Fix #12342: Add APPEND_STRING option to set_property()Alex Neundorf2011-07-1518-35/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | set_property() has APPEND, which creates a list. E.g. when appending to COMPILE_FLAGS a string is needed, not a list. With the APPEND_STRING option the value is append as string, not as list. Alex
* | | Merge topic 'MinorImprovementToTryCompileDocs'Brad King2011-07-261-4/+5
|\ \ \ | | | | | | | | | | | | | | | | d6b9df4 Minor fix to try_compile() docs (#12333)
| * | | Minor fix to try_compile() docs (#12333)Alex Neundorf2011-07-121-4/+5
| | | | | | | | | | | | | | | | Alex
* | | | Merge topic 'doc-custom-command-multiple-targets-issue-12311'Brad King2011-07-261-0/+4
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 0ece8f7 Document caveat of custom commands in multiple targets (#12311)
| * | | | Document caveat of custom commands in multiple targets (#12311)Brad King2011-06-301-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A common mistake when using custom commands is to list the output of a command in multiple targets that may build in parallel. Warn against this case in the documentation and suggest a better approach.
* | | | | Merge topic 'DisableSwitchForFindPackage'Brad King2011-07-262-0/+36
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4a50b5f Add a basic test for CMAKE_DISABLE_FIND_PACKAGE_<package> a66df08 Add documentation for the CMAKE_DISABLE_FIND_PACKAGE_<Name> switch 6e1d3ed Add a switch to disable a find_package() call completely
| * | | | | Add documentation for the CMAKE_DISABLE_FIND_PACKAGE_<Name> switchAlex Neundorf2011-06-232-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | Alex
| * | | | | Add a switch to disable a find_package() call completelyAlex Neundorf2011-06-211-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As discussed, this adds a switch CMAKE_DISABLE_FIND_PACKAGE_<name>, which, when set to TRUE, keeps the find_package() command from executing. When the package is REQUIRED at the same time, an error is generated. Alex
* | | | | | Merge topic 'performance_fix'Brad King2011-07-261-0/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3e4ba89 Only pay for unused variable checking if it is on.
| * | | | | | Only pay for unused variable checking if it is on.Bill Hoffman2011-06-211-0/+4
| | | | | | |
* | | | | | | Merge topic 'vs-ia64'Brad King2011-07-2610-37/+236
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | aed92cc Add VisualStudio 9 and 10 generators for Itanium platform d44c68f VS: Factor Find64BitTools out of Win64 generator to parent
| * | | | | | | Add VisualStudio 9 and 10 generators for Itanium platformMatej Hribernik2011-06-206-0/+199
| | | | | | | |
| * | | | | | | VS: Factor Find64BitTools out of Win64 generator to parentMatej Hribernik2011-06-204-37/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It will be shared with a forthcoming IA64 generator.
* | | | | | | | Merge topic 'mingw-make-use-native-echo-issue-12283'Brad King2011-07-263-27/+2
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6b4d3ad MinGW: Remove old workaround and use native echo (#12283)
| * | | | | | | | MinGW: Remove old workaround and use native echo (#12283)Brad King2011-06-163-27/+2
| | |_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The workaround added by commit 7e92f0b4 (Hack to make echo command work properly in mingw32-make, 2006-10-05) and updated by commit 69356d8a (Juse use cmake -E echo instead of the native echo, 2006-10-13) no longer seems necessary with modern mingw32-make. Furthermore it slows performance due to the time spent loading a cmake process instead of plain echo.
* | | | | | | | KWSys Nightly Date StampKWSys Robot2011-07-261-1/+1
| | | | | | | |
* | | | | | | | KWSys Nightly Date StampKWSys Robot2011-07-251-1/+1
| | | | | | | |
* | | | | | | | KWSys Nightly Date StampKWSys Robot2011-07-241-1/+1
| | | | | | | |
* | | | | | | | KWSys Nightly Date StampKWSys Robot2011-07-231-1/+1
| | | | | | | |
* | | | | | | | KWSys Nightly Date StampKWSys Robot2011-07-221-1/+1
| | | | | | | |
* | | | | | | | KWSys Nightly Date StampKWSys Robot2011-07-211-1/+1
| | | | | | | |
* | | | | | | | KWSys Nightly Date StampKWSys Robot2011-07-201-1/+1
| | | | | | | |
* | | | | | | | KWSys Nightly Date StampKWSys Robot2011-07-191-1/+1
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | KWSys Nightly Date StampKWSys Robot2011-07-181-1/+1
| | | | | | |
* | | | | | | KWSys Nightly Date StampKWSys Robot2011-07-171-1/+1
| | | | | | |
* | | | | | | KWSys Nightly Date StampKWSys Robot2011-07-161-1/+1
| | | | | | |
* | | | | | | KWSys Nightly Date StampKWSys Robot2011-07-151-1/+1
| | | | | | |
* | | | | | | KWSys Nightly Date StampKWSys Robot2011-07-141-1/+1
| |_|_|_|_|/ |/| | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2011-07-131-1/+1
| |_|_|_|/ |/| | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-07-121-1/+1
| | | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-07-111-1/+1
| | | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-07-101-1/+1
| | | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-07-091-1/+1
| | | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-07-081-1/+1
| | | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-07-071-1/+1
| | | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-07-061-1/+1
| | | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-07-051-1/+1
| | | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-07-041-1/+1
| | | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-07-031-1/+1
| | | | |