summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'PrintHelperFunctions'Brad King2013-07-291-0/+146
|\ | | | | | | | | e32ff96 add macros cmake_print_properties() and cmake_print_variables()
| * add macros cmake_print_properties() and cmake_print_variables()Alex Neundorf2013-07-271-0/+146
| | | | | | | | | | | | | | | | | | This patch adds the file CMakePrintHelpers.cmake, which provides the macros (functions) cmake_print_properties() and cmake_print_variables(), which are useful e.g. for debugging and make inspecting target (or other) properties easier. Alex
* | Merge topic 'memcheck_pre_post_args'Brad King2013-07-292-4/+7
|\ \ | | | | | | | | | | | | c0756b6 Revert "CTest: fix pre and post test commands with spaces" (#13887)
| * | Revert "CTest: fix pre and post test commands with spaces" (#13887)Rolf Eike Beer2013-07-272-4/+7
| |/ | | | | | | | | | | | | This reverts commit 6187876dea89618044e200808bcae75a18bd4043. It was actually possible before to have paths with spaces in them, the spaces just need to be quoted. This way spaces will work as argument separators.
* | Merge topic 'FindPNG-dbg-rel'Brad King2013-07-291-3/+30
|\ \ | | | | | | | | | | | | 2a79753 FindPNG: improve library detection (#14301)
| * | FindPNG: improve library detection (#14301)Rolf Eike Beer2013-07-271-3/+30
| |/ | | | | | | | | | | | | -add support for upcoming version 1.7 -improve version selection, use the major and minor of the requested version to generate the library suffix list -support detection of release and debug libraries
* | Merge topic 'rpath-on-mac'Brad King2013-07-291-1/+9
|\ \ | | | | | | | | | | | | 84698ab OS X: If necessary, use xcrun to help find otool used to query install names.
| * | OS X: If necessary, use xcrun to help find otool used to query install names.Clinton Stimpson2013-07-271-1/+9
| |/ | | | | | | | | This fixes querying for @rpath install names when using Xcode without the command line tools installed.
* | Merge topic 'DocumentGraphvisOptions'Brad King2013-07-292-2/+87
|\ \ | | | | | | | | | | | | | | | 692ecf4 graphvizoptions: add copyright notice ee32673 Add documentation for the --graphviz support
| * | graphvizoptions: add copyright noticeAlex Neundorf2013-07-261-0/+14
| | | | | | | | | | | | Alex
| * | Add documentation for the --graphviz supportAlex Neundorf2013-07-262-2/+73
| | | | | | | | | | | | | | | | | | | | | This patch adds Modules/CMakeGraphVizOptions.cmake, which is used only for generating documentation for the --graphviz support. Alex
* | | Merge topic 'ninja_bad_cmcldeps_paths'Brad King2013-07-294-9/+82
|\ \ \ | | | | | | | | | | | | | | | | | | | | 9275554 Ninja: Update BuildDepends test to verify cmcldeps depfiles. 6fa9d0a Ninja: Make cmcldeps depfile output more consistent with 'ninja -t msvc'
| * | | Ninja: Update BuildDepends test to verify cmcldeps depfiles.Robert Maynard2013-07-263-0/+58
| | | |
| * | | Ninja: Make cmcldeps depfile output more consistent with 'ninja -t msvc'Reid Kleckner2013-07-261-9/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Ninja relies on the generator to produce paths that match up with the paths used in the build.ninja file, which are spelled with backslashes. Therefore, cmcldeps should canonicalize depfile paths to use backslashes and relativize paths to the build directory.
* | | | Merge topic 'minor-cleanups'Brad King2013-07-2917-37/+97
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b8dc7fa Genex: Disallow LINKER_LANGUAGE only when used on a static library. c8a10ba cmTarget: Fix iface libraries and languages for static libraries. f94bdb3 cmTarget: Remove duplicates when printing traces of tll signatures ff3d5fa Export: Fix typo of LINK_INTERFACE_LIBRARIES. 79a7a81 Docs: Document variables for default visibility values. 6f6391b Docs: Generalize and de-duplicate VISIBILITY_PREFIX docs. d8cb47f Docs: Trim trailing whitespace in generated doc. f10e648 Docs: Document existing target property debugging options. 4f4d69f Qt4Macros: Simplify some variable population. a413a40 Qt4Macros: Remove undefined varible use. b60a29e Qt4Macros: Remove unneeded generate CONDITION. e454cba Docs: Document file(GENERATE) CONDITION as optional.
| * | | | Genex: Disallow LINKER_LANGUAGE only when used on a static library.Stephen Kelly2013-07-264-8/+12
| | | | | | | | | | | | | | | | | | | | | | | | | For shared libraries and executables, the linker_language is indepenedent of the linked libraries.
| * | | | cmTarget: Fix iface libraries and languages for static libraries.Stephen Kelly2013-07-267-1/+45
| | | | |
| * | | | cmTarget: Remove duplicates when printing traces of tll signaturesStephen Kelly2013-07-261-1/+7
| | | | |
| * | | | Export: Fix typo of LINK_INTERFACE_LIBRARIES.Stephen Kelly2013-07-263-3/+3
| | | | | | | | | | | | | | | | | | | | Refer correctly to the old property, not the new one.
| * | | | Docs: Document variables for default visibility values.Stephen Kelly2013-07-261-0/+16
| | | | |
| * | | | Docs: Generalize and de-duplicate VISIBILITY_PREFIX docs.Stephen Kelly2013-07-261-14/+5
| | | | |
| * | | | Docs: Trim trailing whitespace in generated doc.Stephen Kelly2013-07-262-2/+2
| | | | |
| * | | | Docs: Document existing target property debugging options.Stephen Kelly2013-07-261-3/+5
| | | | |
| * | | | Qt4Macros: Simplify some variable population.Stephen Kelly2013-07-261-4/+2
| | | | |
| * | | | Qt4Macros: Remove undefined varible use.Stephen Kelly2013-07-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | This may have been added in anticipation of processing COMPILE_OPTIONS, but as moc does not accept them, there is no need for it.
| * | | | Qt4Macros: Remove unneeded generate CONDITION.Stephen Kelly2013-07-261-1/+0
| | | | |
| * | | | Docs: Document file(GENERATE) CONDITION as optional.Stephen Kelly2013-07-251-1/+1
| | | | |
* | | | | Merge topic 'FindGTK2Debug'Brad King2013-07-291-83/+92
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 32cf738 FindGTK2: Remove GTK2_SKIP_MARK_AS_ADVANCED option a874142 FindGTK2: Update local changelog cd2d9c7 FindGTK2: Append _INCLUDE_DIR to var name in _GTK2_FIND_INCLUDE_DIR 732324f FindGTK2: Append _LIBRARY to var name in _GTK2_FIND_LIBRARY 03bd3d1 FindGTK2: Use GTK_XXX_LIBRARY_DEBUG libraries in debug mode
| * | | | | FindGTK2: Remove GTK2_SKIP_MARK_AS_ADVANCED optionDaniele E. Domenichelli2013-07-291-9/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Variables are now automatically marked as advanced by SelectLibraryConfigurations
| * | | | | FindGTK2: Update local changelogDaniele E. Domenichelli2013-07-291-0/+9
| | | | | |
| * | | | | FindGTK2: Append _INCLUDE_DIR to var name in _GTK2_FIND_INCLUDE_DIRDaniele E. Domenichelli2013-07-291-35/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is to keep _GTK2_FIND_INCLUDE_DIR and _GTK2_FIND_LIBRARY coherent after previous commit
| * | | | | FindGTK2: Append _LIBRARY to var name in _GTK2_FIND_LIBRARYDaniele E. Domenichelli2013-07-291-39/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This avoids to get the base name using a regexp, in order to use SelectLibraryConfigurations
| * | | | | FindGTK2: Use GTK_XXX_LIBRARY_DEBUG libraries in debug modeDaniele E. Domenichelli2013-07-291-17/+27
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the GTK_XXX_LIBRARY_DEBUG library is available, it is now used when linking in debug mode XXX. A new set of variables GTK_XXX_LIBRARY_RELEASE is added and the original GTK_XXX_LIBRARY uses the optimized/debug syntax.
* | | | | CMake Nightly Date StampKitware Robot2013-07-291-1/+1
| | | | |
* | | | | CMake Nightly Date StampKitware Robot2013-07-281-1/+1
| |_|_|/ |/| | |
* | | | CMake Nightly Date StampKitware Robot2013-07-271-1/+1
| |_|/ |/| |
* | | Merge topic 'tid-system-argument'Brad King2013-07-261-1/+1
|\ \ \ | | | | | | | | | | | | | | | | 9b9a596 cmTarget: Fix property name typo in docs.
| * | | cmTarget: Fix property name typo in docs.Stephen Kelly2013-07-251-1/+1
| | | |
* | | | Merge topic 'install-interface-relative'Brad King2013-07-265-6/+44
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | d777b8e Genex: Allow relative paths in INSTALL_INTERFACE.
| * | | | Genex: Allow relative paths in INSTALL_INTERFACE.Stephen Kelly2013-07-255-6/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These paths can be prepended with the ${_IMPORT_PREFIX} generated in the export file. Such relative paths were previously an error.
* | | | | Merge topic 'install-interface-includes'Brad King2013-07-2614-12/+127
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | 650e61f Add a convenient way to add the includes install dir to the INTERFACE.
| * | | | Add a convenient way to add the includes install dir to the INTERFACE.Stephen Kelly2013-07-2414-12/+127
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Export the INCLUDES DESTINATION without appending to the INTERFACE_INCLUDE_DIRECTORIES of the target itself. That way, a target can be exported multiple times with different INCLUDES DESTINATION without unintended cross-pollution of export sets.
* | | | | Merge topic 'Qt4-INTERFACE_LINK_LIBRARIES'Brad King2013-07-261-0/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 0f267c0 FindQt4: Populate the INTERFACE_LINK_LIBRARIES of IMPORTED targets.
| * | | | | FindQt4: Populate the INTERFACE_LINK_LIBRARIES of IMPORTED targets.Stephen Kelly2013-07-251-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes the IMPORTED_LINK_INTERFACE_LIBRARIES_<CONFIG> properties obsolete.
* | | | | | Merge topic 'doc-check-compiler-flag-override'Brad King2013-07-262-5/+7
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3e79d65 Check*CompilerFlag: Document use of CMAKE_REQUIRED_DEFINITIONS (#14309)
| * | | | | | Check*CompilerFlag: Document use of CMAKE_REQUIRED_DEFINITIONS (#14309)Brad King2013-07-252-5/+7
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | Explain how CMAKE_REQUIRED_DEFINITIONS is set before calling the check_*_source_compiles macros.
* | | | | | Merge topic 'sha2-avoid-type-pun'Brad King2013-07-261-4/+8
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6a365d0 sha2: Avoid type-punned pointer dereference (#14314)
| * | | | | | sha2: Avoid type-punned pointer dereference (#14314)Brad King2013-07-251-4/+8
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GCC warns: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] on constructs like *(sha_word64*)&var = so use memcpy to perform such assignments instead.
* | | | | | CMake Nightly Date StampKitware Robot2013-07-261-1/+1
|/ / / / /
* | | | | Merge topic 'dev/export-target-without-language'Brad King2013-07-257-0/+26
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 5837f19 export: Error when exporting a target without a language