summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* FindIce: Find slice2confluence and slice2matlab executablesjspam2019-01-102-0/+9
|
* CMake Nightly Date StampKitware Robot2019-01-071-1/+1
|
* Merge topic 'bundle_fixes'Craig Scott2019-01-068-13/+65
|\ | | | | | | | | | | | | | | | | | | | | 08be74bfd7 GetPrerequisites: Fix handling of executable scripts 52445300d6 GetPrerequisites: Allow prefixed tools 1bac4678ea GetPrerequisites: Add GET_PREREQUISITES_VERBOSE to set verbose 5072598f07 BundleUtilites: Don't use hardcoded name for install_name_tool 428680da92 GetPrerequisites: Don't use hardcoded name for otool Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2748
| * GetPrerequisites: Fix handling of executable scriptsAlexander Grund2019-01-047-0/+41
| | | | | | | | Fixes: #18667
| * GetPrerequisites: Allow prefixed toolsAlexander Grund2018-12-311-10/+10
| | | | | | | | e.g. for cross-compilation with e.g. x86_64-pc-linux-gnu-ldd
| * GetPrerequisites: Add GET_PREREQUISITES_VERBOSE to set verboseAlexander Grund2018-12-311-0/+7
| |
| * BundleUtilites: Don't use hardcoded name for install_name_toolAlexander Grund2018-12-311-2/+6
| |
| * GetPrerequisites: Don't use hardcoded name for otoolAlexander Grund2018-12-301-1/+1
| |
* | CMake Nightly Date StampKitware Robot2019-01-061-1/+1
| |
* | CMake Nightly Date StampKitware Robot2019-01-051-1/+1
| |
* | Merge topic 'remove-std-iterator'Craig Scott2019-01-041-2/+1
|\ \ | | | | | | | | | | | | | | | | | | 1b135cdff2 cmLinkedTree: Remove deprecated std::iterator Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2767
| * | cmLinkedTree: Remove deprecated std::iteratorVitaly Stakhovsky2019-01-011-2/+1
| |/
* | Merge topic 'get-ide-version-const'Craig Scott2019-01-049-9/+8
|\ \ | | | | | | | | | | | | | | | | | | 77d83568e0 cmGlobalVisualStudioGenerator::GetIDEVersion(): const added Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2769
| * | cmGlobalVisualStudioGenerator::GetIDEVersion(): const addedVitaly Stakhovsky2019-01-029-9/+8
| | |
* | | Merge branch 'swig_src_file_ext' into 'master'Marc Chevrier2019-01-047-2/+111
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | UseSWIG: Add support for custom Swig source file extensions Closes #18727 See merge request cmake/cmake!2764
| * | | SWIG: Add support for custom Swig source file extensionsThirumal Venkat2019-01-037-2/+111
| | | |
* | | | CMake Nightly Date StampKitware Robot2019-01-041-1/+1
| | | |
* | | | CMake Nightly Date StampKitware Robot2019-01-031-1/+1
| | | |
* | | | Merge topic 'messenger-no-cmstate-v2'Craig Scott2019-01-023-44/+61
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | 8a803d784b cmMessenger: Decouple from cmState Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2653
| * | | cmMessenger: Decouple from cmStateBruno Manganelli2019-01-013-44/+61
| | | |
* | | | CMake Nightly Date StampKitware Robot2019-01-021-1/+1
| | | |
* | | | CMake Nightly Date StampKitware Robot2019-01-011-1/+1
| | | |
* | | | Merge topic 'add-override'Craig Scott2018-12-3110-31/+34
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 94632087b2 Add missing override Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2763
| * | | | Add missing overrideVitaly Stakhovsky2018-12-3010-31/+34
| | |_|/ | |/| |
* | | | Merge topic 'gtest-discovery-work-dir'Craig Scott2018-12-311-0/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3bbf77fa01 Specify WORKING_DIRECTORY to execute_process() in GoogleTestAddTests Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2761
| * | | | Specify WORKING_DIRECTORY to execute_process() in GoogleTestAddTestsNehal J Wani2018-12-281-0/+1
| | | | |
* | | | | CMake Nightly Date StampKitware Robot2018-12-311-1/+1
| |/ / / |/| | |
* | | | CMake Nightly Date StampKitware Robot2018-12-301-1/+1
| | | |
* | | | Merge topic 'remove-include-cmakeparsearguments'Craig Scott2018-12-294-7/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 88b40744b5 CMakeParseArguments: Remove superfluous includes of CMakeParseArguments Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !2744
| * | | | CMakeParseArguments: Remove superfluous includes of CMakeParseArgumentsKyle Edwards2018-12-144-7/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Because cmake_parse_arguments() has been implemented as a native command, there is no need to include(CMakeParseArguments) anymore. Its inclusion has been removed from several CMake modules. Tests/CMakeOnly/CMakeLists.txt has been changed to include the *building* CMake's copy of CMakeParseArguments rather than the *built* CMake's copy. This file included the *built* copy because when this file was introduced, CMake could still be built with versions that didn't supply cmake_parse_arguments(). Now, CMake requires 3.1 or greater, where cmake_parse_arguments() existed but was still in the form of a module, so we include it from the *building* CMake.
* | | | | CMake Nightly Date StampKitware Robot2018-12-291-1/+1
| |/ / / |/| | |
* | | | CMake Nightly Date StampKitware Robot2018-12-281-1/+1
| |_|/ |/| |
* | | CMake Nightly Date StampKitware Robot2018-12-271-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2018-12-261-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2018-12-251-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2018-12-241-1/+1
| | |
* | | Merge topic 'link-options'Craig Scott2018-12-2328-50/+267
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | f255280fd9 PIE link options: Update strategy to fix performance regression Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2739
| * | | PIE link options: Update strategy to fix performance regressionMarc Chevrier2018-12-1928-50/+267
| | | | | | | | | | | | | | | | Fixes: #18700
* | | | Merge topic 'install-code-script-genex'Craig Scott2018-12-2316-12/+162
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 25cae1e85d install: Teach CODE,SCRIPT modes to evaluate generator expressions Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2688
| * | | | install: Teach CODE,SCRIPT modes to evaluate generator expressionsJon Chronopoulos2018-12-2216-12/+162
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This also introduces CMP0087 which will keep the OLD behaviour of not evaluating generator expressions Fixes: #15785
* | | | | CMake Nightly Date StampKitware Robot2018-12-231-1/+1
| | | | |
* | | | | Merge topic 'runcmake-test-filter'Craig Scott2018-12-222-0/+15
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b6eafd5781 Tests: Add RunCMake_TEST_FILTER environment variable Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Artur Ryt <artur.ryt@gmail.com> Merge-request: !2743
| * | | | | Tests: Add RunCMake_TEST_FILTER environment variableKyle Edwards2018-12-132-0/+15
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | This environment variable allows developers to locally run only a subset of RunCMake subtests in a single RunCMakeTest.cmake script. If the environment variable is not set, all of the tests in the script are run.
* | | | | CMake Nightly Date StampKitware Robot2018-12-221-1/+1
| | | | |
* | | | | Merge topic 'output-on-failure'Craig Scott2018-12-2111-4/+115
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 19d86e26e3 ExternalProject: add LOG_OUTPUT_ON_FAILURE option Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2625
| * | | | | ExternalProject: add LOG_OUTPUT_ON_FAILURE optionWouter Klouwen2018-12-2011-4/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This option only has an effect if at least one of the other LOG_<step> options is enabled. If an error occurs for a step which has logging to file enabled, that step's output will be printed to the console. For cases where a large amount of output is recorded, just the end of that output may be printed to the console.
* | | | | | Merge topic 'compile_options'Kyle Edwards2018-12-212-20/+49
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2439d546c8 Help: Revise compile options command docs, and provide example Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2752
| * | | | | | Help: Revise compile options command docs, and provide exampleJoachim Wuttke (h)2018-12-202-20/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For add_compile_options and target_compile_options: - Insert sections. - Provide cross-links between the two doc pages - Alleviate and explain links to the commands ...compile_definitions and ...include_directories. - Alleviate link to COMPILE_OPTIONS, and integrate it into the synopsis.
* | | | | | | Merge branch 'doc-updates' into 'master'Marc Chevrier2018-12-211-17/+23
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Help: FindLibLZMA: update formatting. See merge request cmake/cmake!2755
| * | | | | | | Help: FindLibLZMA: update formatting.Marc Chevrier2018-12-201-17/+23
| | | | | | | |