summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* Fix warnings from clang scanbuild.Bill Hoffman2015-03-256-21/+32
|
* CMake Nightly Date StampKitware Robot2015-03-241-1/+1
|
* Merge topic 'ninja-require-byproducts'Brad King2015-03-234-22/+77
|\ | | | | | | | | | | | | | | bd9c7f9b Ninja: Add policy to require explicit custom command byproducts ed8e30b0 cmGlobalNinjaGenerator: Optimize handling of known build outputs ad094f43 cmGlobalNinjaGenerator: Fix spelling of "unknown" 82a37d3c cmGlobalNinjaGenerator: Drop unused member
| * Ninja: Add policy to require explicit custom command byproductsBrad King2015-03-204-6/+66
| | | | | | | | | | | | | | | | | | | | | | | | Add policy CMP0058 to avoid generating 'phony' ninja rules for unknown custom command dependencies. This requires projects to specify their custom command byproducts explicitly. With this requirement we no longer have to assume that unknown custom command dependencies are generated and can instead simply assume they are source files expected to exist when the build starts. This is particularly important in in-source builds. It is also helpful for out-of-source builds to allow Ninja to diagnose missing files before running custom command rules that depend on them.
| * cmGlobalNinjaGenerator: Optimize handling of known build outputsBrad King2015-03-201-10/+7
| | | | | | | | | | | | | | Teach WriteUnknownExplicitDependencies to take ownership of the set of WriteBuild outputs immediately since no other methods need the data. This avoids re-inserting the whole set into another already populated set.
| * cmGlobalNinjaGenerator: Fix spelling of "unknown"Brad King2015-03-201-4/+4
| |
| * cmGlobalNinjaGenerator: Drop unused memberBrad King2015-03-181-2/+0
| |
* | Merge topic 'add-extra-qbs-generator'Brad King2015-03-234-0/+314
|\ \ | | | | | | | | | | | | f85db2f3 Qbs: Add new 'extra' generator for qbs project files
| * | Qbs: Add new 'extra' generator for qbs project filesStanislav Ionascu2015-03-204-0/+314
| | |
* | | Merge topic 'cpack-bundle-codesign'Brad King2015-03-231-3/+11
|\ \ \ | | | | | | | | | | | | | | | | fb3e4de8 CPack: Add support to overwrite or pass additional parameter to codesign
| * | | CPack: Add support to overwrite or pass additional parameter to codesignAndré Klitzing2015-03-231-3/+11
| |/ /
* | | Merge topic 'autogen-write-access'Brad King2015-03-231-0/+14
|\ \ \ | | | | | | | | | | | | | | | | 610464c1 QtAutogen: Ensure write access to AutogenInfo.cmake (#15416)
| * | | QtAutogen: Ensure write access to AutogenInfo.cmake (#15416)Justin Borodinsky2015-03-201-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | ConfigureFile uses the input file permissions, but we require write access in cmQtAutoGenerators::SetupAutoGenerateTarget to append to the file.
* | | | Merge topic 'xcode-xctest'Brad King2015-03-233-3/+28
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4178cd88 Help: Add notes for topic 'xcode-xctest' 87a4b858 Tests: Add XCTest example to test Frameworks and Cocoa App Bundles ba14510b OS X: Add FindXCTest module 3714955b OS X: Add handling for XCTest bundles 54a5cdbb Tests: Compute Xcode version for any generator on OS X
| * | | | OS X: Add handling for XCTest bundlesGregor Jasny2015-03-233-3/+28
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | An XCTest bundle is a CFBundle with a special product-type and bundle extension. For more information about XCTest visit the Mac Developer library at: http://developer.apple.com/library/mac/documentation/DeveloperTools/Conceptual/testing_with_xcode/ Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
* | | | Merge topic 'ctest-repeat-until-fail'Brad King2015-03-236-15/+131
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | 6bce0276 Help: Add notes for topic 'ctest-repeat-until-fail' fde70a1b ctest: Add a new --repeat-until-fail option
| * | | | ctest: Add a new --repeat-until-fail optionBill Hoffman2015-03-236-15/+131
| | | | | | | | | | | | | | | | | | | | | | | | | This option tells ctest to run each test N times until the test fails or the N times have run. This is useful for finding random failing tests.
* | | | | CMake Nightly Date StampKitware Robot2015-03-231-1/+1
| | | | |
* | | | | CMake Nightly Date StampKitware Robot2015-03-221-1/+1
| | | | |
* | | | | CMake Nightly Date StampKitware Robot2015-03-211-1/+1
| |_|/ / |/| | |
* | | | Merge topic 'file-globbing-directory-listing'Brad King2015-03-201-3/+59
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | 6e54b0b9 Help: Add notes for topic 'file-globbing-directory-listing' a2c068a7 file: Teach GLOB to list directories optionally
| * | | | file: Teach GLOB to list directories optionallyDomen Vrankar2015-03-201-3/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GLOB lists directories by default and GLOB_RECURSE does not. LIST_DIRECTORIES enables user to control the behavior explicitly for consistently for both GLOB and GLOB_RECURSE.
* | | | | Merge topic 'update-kwsys'Brad King2015-03-202-2/+10
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0e8325db Merge branch 'upstream-kwsys' into update-kwsys bc67dbed KWSys 2015-03-18 (9367a33b)
| * | | | | Merge branch 'upstream-kwsys' into update-kwsysBrad King2015-03-182-2/+10
| |/ / / /
* | | | | Merge topic 'ninja-no-circular-phony'Brad King2015-03-201-1/+1
|\ \ \ \ \ | | |_|_|/ | |/| | | | | | | | | | | | | 80afe28a Ninja: Do not generate circular phony rules (#15454)
| * | | | Ninja: Do not generate circular phony rules (#15454)Brad King2015-03-181-1/+1
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The phony rules added by commit v2.8.12~248^2 (Ninja: Custom Command file depends don't need to exist before building, 2013-06-07) are circular, e.g. build side-effect: phony side-effect This is not diagnosed by Ninja as of version 1.5, but the dependency does not make sense. Simply drop it and use phony rules of the form build side-effect: phony instead. Reported-by: Daniel Dunbar
* | | | CMake Nightly Date StampKitware Robot2015-03-201-1/+1
| | | |
* | | | CMake Nightly Date StampKitware Robot2015-03-191-1/+1
|/ / /
* | | CMake Nightly Date StampKitware Robot2015-03-181-1/+1
|/ /
* | Merge topic 'output-ctest-env-vars'Brad King2015-03-171-0/+15
|\ \ | | | | | | | | | | | | 874fdd91 CTest: Output test-specific env vars in verbose mode (#15446)
| * | CTest: Output test-specific env vars in verbose mode (#15446)Zach Mullen2015-03-171-0/+15
| | | | | | | | | | | | | | | | | | Any environment vars that were configured for a test via the ENVIRONMENT property will now be output when the test is run with verbose logging enabled.
* | | CMake Nightly Date StampKitware Robot2015-03-171-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2015-03-161-1/+1
|/ /
* | CMake Nightly Date StampKitware Robot2015-03-151-1/+1
| |
* | CMake Nightly Date StampKitware Robot2015-03-141-1/+1
| |
* | CMake Nightly Date StampKitware Robot2015-03-131-1/+1
| |
* | Merge topic 'refactor-cmGeneratorExpression'Brad King2015-03-129-1931/+2053
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | ec428faf Genex: Extend cmGeneratorExpressionContext constructor. 082b6a9d Genex: Split cmGeneratorExpressionContext into own file. 9df1f0fc Genex: Split cmGeneratorExpressionNode into own file. 80b9f0cb Genex: Extract an evaluateWithContext method. 642048ce Help: Move docs of $<0:...> and $<1:...> to output section.
| * | Genex: Extend cmGeneratorExpressionContext constructor.Stephen Kelly2015-03-103-16/+29
| | | | | | | | | | | | Initialize the members in the appropriate place.
| * | Genex: Split cmGeneratorExpressionContext into own file.Stephen Kelly2015-03-104-28/+69
| | |
| * | Genex: Split cmGeneratorExpressionNode into own file.Stephen Kelly2015-03-104-1889/+1945
| | |
| * | Genex: Extract an evaluateWithContext method.Stephen Kelly2015-03-102-12/+24
| | | | | | | | | | | | | | | Make it easier to make modifications to the context before evaluating with it.
* | | Merge topic 'update-kwsys'Brad King2015-03-121-1/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | e433223d Merge branch 'upstream-kwsys' into update-kwsys 9a427f86 KWSys 2015-03-10 (4a698414)
| * | | Merge branch 'upstream-kwsys' into update-kwsysBrad King2015-03-111-1/+1
| | | |
* | | | Merge topic 'vs-express-build-output'Brad King2015-03-121-4/+13
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 94887cb6 cmake: Teach --build to get VCExpress output (#15437)
| * | | | cmake: Teach --build to get VCExpress output (#15437)Brad King2015-03-101-4/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | VCExpress does not produce output if its pipes are connected to an interactive terminal. Add a special case to 'cmake --build' to capture the output through a pipe and re-print it instead of sharing output pipes with VCExpress.
* | | | | Merge topic 'cmRemoveDuplicates-improvement'Brad King2015-03-121-6/+36
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8701a3f4 cmRemoveDuplicates: Partially specialize the API for pointer types. eec7091d cmRemoveDuplicates: Type-parameterize all uniq-operations 7cbafa8c cmRemoveDuplicates: Store unique iterators instead of values.
| * | | | | cmRemoveDuplicates: Partially specialize the API for pointer types.Stephen Kelly2015-03-101-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If de-duplicating a container of pointers, there is no need to store iterators to them, as that is just more 'pointer chasing'. Store the pointers themselves and use API which compares the pointers in the specialization.
| * | | | | cmRemoveDuplicates: Type-parameterize all uniq-operationsStephen Kelly2015-03-101-11/+22
| | | | | |
| * | | | | cmRemoveDuplicates: Store unique iterators instead of values.Stephen Kelly2015-03-101-6/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is no need to copy all of the values in the container in order to determine uniqueness. Iterators can be stored instead and can be used with standard algorithms with custom comparison methods. This also means that we use less space in case the value_type size is greater than sizeof(iterator). That is common for std::string which may require up to 32 bytes (libstdc++ 5.0 and MSVC at least). With libstdc++ 4.9 and older, std::string is 8 bytes, so we likely don't gain anything here. Inspired-by: Daniel Pfeifer <daniel@pfeifer-mail.de>
* | | | | | Merge topic 'cmAlgorithms-cleanup'Brad King2015-03-1247-11/+62
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 95dd238f cmRemoveDuplicates: Fix iterator -> const_iterator. 4448f175 cmInstalledFile: Move Property implementation out of line. 7916d7ba Include cmAlgorithms where it is used.