summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* file DOWNLOAD: Display the curl result status when a hash mismatch occurs.Matt McCormick2014-01-161-0/+2
|
* Merge topic 'skip-return-code'Brad King2014-01-153-1/+18
|\ | | | | | | | | 3a0d164b allow to mark a test as "Not Run" with a specific return code (#8466)
| * allow to mark a test as "Not Run" with a specific return code (#8466)Rolf Eike Beer2014-01-143-1/+18
| |
* | CMake Nightly Date StampKitware Robot2014-01-151-1/+1
| |
* | Merge topic 'fix-cb-nmake-quotes'Brad King2014-01-141-3/+5
|\ \ | |/ |/| | | | | f2b47197 CodeBlocks: fix unescaped command quotes when used with nmake
| * CodeBlocks: fix unescaped command quotes when used with nmakeNils Gladitz2014-01-131-3/+5
| |
* | CMake Nightly Date StampKitware Robot2014-01-141-1/+1
|/
* Merge topic 'support-codelite-ide-generator'Brad King2014-01-134-0/+546
|\ | | | | | | | | 0c4e8c70 Add support for codelite IDE project fles
| * Add support for codelite IDE project flesEran Ifrah2014-01-104-0/+546
| |
* | Merge topic 'missing-dependency-error'Brad King2014-01-136-2/+69
|\ \ | | | | | | | | | | | | 0bf6f13b AddDependencies: new policy requires dependencies to exist
| * | AddDependencies: new policy requires dependencies to existNils Gladitz2014-01-126-2/+69
| | | | | | | | | | | | | | | Added new policy CMP0046 which requires dependencies added by add_dependencies() to actually exist.
* | | Merge topic 'constify'Brad King2014-01-139-56/+72
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2cbf0311 cmGlobalGenerator: Make SelectMakeProgram const. b4ff38a5 cmGlobalGenerator: Make CheckALLOW_DUPLICATE_CUSTOM_TARGETS const 8aeddf1f cmGlobalGenerator: Make some API const. 8fd0f2a7 cmGeneratorTarget: Hold a const global generator. 46315320 cmComputeLinkDepends: Hold a const global generator.
| * | | cmGlobalGenerator: Make SelectMakeProgram const.Stephen Kelly2014-01-124-10/+10
| | | |
| * | | cmGlobalGenerator: Make CheckALLOW_DUPLICATE_CUSTOM_TARGETS constStephen Kelly2014-01-124-4/+4
| | | |
| * | | cmGlobalGenerator: Make some API const.Stephen Kelly2014-01-122-39/+55
| | | |
| * | | cmGeneratorTarget: Hold a const global generator.Stephen Kelly2014-01-122-2/+2
| | | |
| * | | cmComputeLinkDepends: Hold a const global generator.Stephen Kelly2014-01-121-1/+1
| | | |
* | | | Merge topic 'fix-find-package-mode'Brad King2014-01-133-26/+31
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | a7f393dc cmake: Future-proof --find-package mode.
| * | | | cmake: Future-proof --find-package mode.Stephen Kelly2014-01-133-26/+31
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create cmGeneratorTargets before generating generate-time information. C++ interfaces for querying build information is increasingly only available at generate time through the cmGeneratorTarget class. Ensure that the required cmGeneratorTarget instances are created. Use the cmGlobalGenerator access API to access the relevant cmGeneratorTarget instead of creating a temporary one on the stack.
* | | | Merge topic 'ninja_fix_rerun'Brad King2014-01-131-5/+24
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 6fac24d7 Ninja: Avoid re-running CMake on next build after regeneration
| * | | | Ninja: Avoid re-running CMake on next build after regenerationRobert Maynard2014-01-131-5/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In commit 4a6397a7 (Ninja: Track configured files so we can regenerate them, 2013-06-17) we accidentally started listing files generated by CMake as inputs to the configuration process instead of outputs from it. Move the list of files generated by CMake to the regeneration rule outputs section and tell Ninja to restat after running it.
* | | | | CMake Nightly Date StampKitware Robot2014-01-131-1/+1
| |_|/ / |/| | |
* | | | CMake Nightly Date StampKitware Robot2014-01-121-1/+1
| |/ / |/| |
* | | CMake Nightly Date StampKitware Robot2014-01-111-1/+1
| |/ |/|
* | CMake Nightly Date StampKitware Robot2014-01-101-1/+1
| |
* | Merge topic 'minor-cleanups'Brad King2014-01-0922-114/+271
|\ \ | | | | | | | | | | | | | | | | | | | | | 531e40b cmTarget: Make GetSourceFiles populate an out-vector parameter. 38de54c cmGeneratorTarget: Add methods to access source file groups. f579fe0 Help: Fix link to MAP_IMPORTED_CONFIG_<CONFIG> 590d238 cmTarget: Handle NO_SYSTEM_FROM_IMPORTED.
| * | cmTarget: Make GetSourceFiles populate an out-vector parameter.Stephen Kelly2014-01-0918-33/+54
| | | | | | | | | | | | | | | In a future patch, this will also be populated with extra sources from the linked dependencies.
| * | cmGeneratorTarget: Add methods to access source file groups.Stephen Kelly2014-01-0911-77/+209
| | | | | | | | | | | | | | | These methods and others will be able to get a config parameter later to implement the INTERFACE_SOURCES feature.
| * | cmTarget: Handle NO_SYSTEM_FROM_IMPORTED.Stephen Kelly2014-01-081-4/+8
| | | | | | | | | | | | | | | This handling was lost in commit faedd2be (cmTarget: Fix system include annotation propagation., 2014-01-01).
* | | Merge topic 'compat-help-custom-modules'Brad King2014-01-093-2/+59
|\ \ \ | | | | | | | | | | | | | | | | b177294 cmake: Implement placeholder --help-custom-modules compatibility
| * | | cmake: Implement placeholder --help-custom-modules compatibilityBrad King2014-01-083-2/+59
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | The implementation of the "cmake --help-custom-modules" was removed along with the rest of the old help generation infrastructure when documentation was converted to reStructuredText. In order to avoid breaking existing project builds outright when they use a custom command that runs a command like "cmake --help-custom-modules foo.1", generate the requested file with placeholder content explaining that the option is not supported anymore.
* | | Merge topic 'policies'Brad King2014-01-097-33/+134
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 73e9340 get_target_property: Error on non-existent target. ab9f58f FindQt4: Ensure target exists before calling get_target_property. 37ebeb9 FindQt4: Fix use of get_target_property to use actual target name. 6aabb6a Genex: Use case-sensitive comparison for COMPILER_ID. 5bb53f6 cmTarget: Deprecate COMPILE_DEFINITIONS_ properties with a policy.
| * | | get_target_property: Error on non-existent target.Stephen Kelly2014-01-083-1/+36
| | | | | | | | | | | | | | | | Introduce policy CMP0045 to control this behavior.
| * | | Genex: Use case-sensitive comparison for COMPILER_ID.Stephen Kelly2014-01-083-1/+29
| | | |
| * | | cmTarget: Deprecate COMPILE_DEFINITIONS_ properties with a policy.Stephen Kelly2014-01-086-31/+69
| | | |
* | | | Merge topic 'optional-install'Brad King2014-01-091-2/+13
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | be0458c InstallRules: added new variable to disable generation of install rules
| * | | | InstallRules: added new variable to disable generation of install rulesNils Gladitz2014-01-081-2/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The boolean variable CMAKE_SKIP_INSTALL_RULES allows disabling generation of install rules for projects which don't want them.
* | | | | Merge topic 'vs10-include-backslashes'Brad King2014-01-091-1/+3
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | c131107 VS: Convert include path to backslashes for VS >= 10
| * | | | | VS: Convert include path to backslashes for VS >= 10Brad King2014-01-081-1/+3
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In VS <= 9 we already convert include paths to use backslashes but the conversion was left out of the VS >= 10 generator. Add the conversion now for consistency. VS 11 and 12 now require it because they mistakenly interpret forward-slash options that happen to occur in paths: http://connect.microsoft.com/VisualStudio/feedback/details/778367
* | | | | CMake Nightly Date StampKitware Robot2014-01-091-1/+1
| |_|_|/ |/| | |
* | | | Merge topic 'wix-cmake-package-registry'Brad King2014-01-082-1/+45
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 92c4d40 CPackWiX: added new CPACK_WIX_CMAKE_PACKAGE_REGISTRY variable
| * | | | CPackWiX: added new CPACK_WIX_CMAKE_PACKAGE_REGISTRY variableNils Gladitz2014-01-082-1/+45
| | |_|/ | |/| | | | | | | | | | | | | | Allows automatic registration of installed packages with the cmake package registry.
* | | | Merge topic 'xcode-storyboard-file-type'Brad King2014-01-081-1/+4
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e361c3c Merge branch 'xcode-storyboard-file-type-2.8.12' into xcode-storyboard-file-type 93fc5a5 Xcode: Fix storyboard view 2d23c1f Xcode: Fix storyboard view
| * | | | Xcode: Fix storyboard viewRuslan Baratov2014-01-071-1/+4
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since commit 56831461 (Xcode: Use explicitFileType to mark source types, 2013-04-16) the Xcode generator prefers to use explicitFileType to tell Xcode about each source file type. This works better than lastKnownFileType for some file types, but not for "file.storyboard". If storyboard file has attribute 'explicitFileType' it is displayed incorrectly (as raw xml). Switch it back to 'lastKnownFileType'.
* | | | CMake Nightly Date StampKitware Robot2014-01-081-1/+1
|/ / /
* | | Merge topic 'minor-cleanups'Brad King2014-01-076-71/+92
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3917d86 Genex: Add a nullary form for CONFIG 5169130 Help: Document the target properties exported to IMPORTED targets. ee21f1c CompatibleInterface: Test debugging of not-set property. 80e9fe9 Help: Note that language-specific 'built-ins' are set by the project command. 0b5bf8a Help: Mention CMAKE_DISABLE_FIND_PACKAGE_<PackageName> in package docs. 28c865b Tests: simplify Qt4 target usage 6cfe6b8 Help: Fix typo: 'target' -> 'target property' b7deca4 Test: Remove obsolete commented code. 9c9f69f Genex: Make EQUAL support upper case binary literals 6eb3218 Genex: Fix case of methods in the dag checker. 646c6ec Genex: Use a preprocessor loop to implement transitive DAG check. 711fb38 Genex: List transitive properties and methods as a table, not two lists. 802a28f Add cmHasLiteralSuffix API.
| * | | Genex: Add a nullary form for CONFIGStephen Kelly2014-01-071-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is consistent with other similar expressions such as PLATFORM_ID, and makes the CONFIGURATION expression obsolete. Fix an off-by-one error in GeneratorExpressionContent::EvaluateParameters exposed by a unit test. Remove the test for 'bad' nullary use of $<CONFIG>. Add a unit test to verify that $<CONFIG> and $<CONFIGURATION> have the same value.
| * | | Genex: Make EQUAL support upper case binary literalsStephen Kelly2014-01-061-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As C++11, python, D and java do. http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3472.pdf Add test for uppercase hex literals.
| * | | Genex: Fix case of methods in the dag checker.Stephen Kelly2014-01-063-9/+9
| | | |
| * | | Genex: Use a preprocessor loop to implement transitive DAG check.Stephen Kelly2014-01-062-32/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The other infrastructure for transitive property handling is already using a preprocessor loop. Implement special backward-compatibility handling of COMPILE_DEFINITIONS_<CONFIG> using a template switch for the extra check.