summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'clean-up-cmDefinitions'Brad King2015-04-292-30/+11
|\ | | | | | | | | | | | | a3358fac cmDefinitions: Inline SetInternal method. 23370344 cmDefinitions: Remove unused Set return value. b9f4dd39 cmDefinitions: Remove unused method.
| * cmDefinitions: Inline SetInternal method.Stephen Kelly2015-04-282-16/+9
| |
| * cmDefinitions: Remove unused Set return value.Stephen Kelly2015-04-282-6/+4
| |
| * cmDefinitions: Remove unused method.Stephen Kelly2015-04-282-10/+0
| |
* | Merge topic 'cmState-CurrentDirs'Brad King2015-04-2965-195/+313
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 46f6a5f4 cmState: Store the Current directories. 3a041c59 Introduce cmState::Snapshot. ae6c8a9d cmState: Store the Source and Binary directories. 86f3cd0f cmMakefile: Require the localGenerator in the constructor. a48aebcb cmLocalGenerator: Require a parent in the constructor. e4c78b37 cmMakefile: Inline SetHome* methods into last remaining caller. 410f39a4 cmMakefile: Delegate storage of Home dirs to the cmake class.
| * | cmState: Store the Current directories.Stephen Kelly2015-04-284-16/+48
| | |
| * | Introduce cmState::Snapshot.Stephen Kelly2015-04-284-2/+48
| | | | | | | | | | | | | | | | | | | | | Create snapshots for buildsystem directories during configure time. This class will be extended in follow up commits to snapshot all values in the cmState.
| * | cmState: Store the Source and Binary directories.Stephen Kelly2015-04-284-8/+33
| | |
| * | cmMakefile: Require the localGenerator in the constructor.Stephen Kelly2015-04-283-52/+38
| | | | | | | | | | | | | | | Move the contents of cmMakeile::SetLocalGenerator to the Initialize method.
| * | cmLocalGenerator: Require a parent in the constructor.Stephen Kelly2015-04-2859-86/+132
| | | | | | | | | | | | | | | | | | | | | Pass the parent though cmGlobalGenerator::CreateLocalGenerator. This will make it easy to initialize state scopes independent of cmMakefile.
| * | cmMakefile: Inline SetHome* methods into last remaining caller.Stephen Kelly2015-04-282-32/+17
| | |
| * | cmMakefile: Delegate storage of Home dirs to the cmake class.Stephen Kelly2015-04-284-21/+19
| | | | | | | | | | | | There is no need to duplicate these on every cmMakefile.
* | | CMake Nightly Date StampKitware Robot2015-04-291-1/+1
| |/ |/|
* | Merge topic 'include-early-optional-handling'Brad King2015-04-281-1/+13
|\ \ | | | | | | | | | | | | 8d9f39f4 include: Ask for permission, rather than forgiveness.
| * | include: Ask for permission, rather than forgiveness.Stephen Kelly2015-04-271-1/+13
| | | | | | | | | | | | | | | | | | Check that a non-optional file exists before attempting to include it. This makes more sense than relying on an error case deeper within cmListFileCache.
* | | Merge topic 'fix-osx-framework-detection'Brad King2015-04-281-9/+2
|\ \ \ | |_|/ |/| | | | | | | | c46490da cmSystemTools: Fix IsPathToFramework implementation (#15535)
| * | cmSystemTools: Fix IsPathToFramework implementation (#15535)Brad King2015-04-271-9/+2
| | | | | | | | | | | | | | | | | | | | | | | | Use more reliable logic to detect if a path ends in ".framework". The old logic added by commit v2.4.0~791 (add better support for framework linking, 2005-12-26) did not account for paths not ending in it at all. With a 9-character path the logic and "npos == -1" happens to make the old check pass.
* | | CMake Nightly Date StampKitware Robot2015-04-281-1/+1
| |/ |/|
* | CMake Nightly Date StampKitware Robot2015-04-271-1/+1
| |
* | CMake Nightly Date StampKitware Robot2015-04-261-1/+1
| |
* | CMake Nightly Date StampKitware Robot2015-04-251-1/+1
| |
* | CMake Nightly Date StampKitware Robot2015-04-241-1/+1
|/
* Merge topic 'cpack-deb-linitian-md5hash'Brad King2015-04-231-0/+6
|\ | | | | | | | | | | 75b0e167 CPackDeb: Add basic package tests fdfe4586 CPackDeb: Fix lintian md5sum file warning
| * CPackDeb: Fix lintian md5sum file warningRaffi Enficiaud2015-04-231-0/+6
| | | | | | | | Lintian warned about invalid md5sum file permissions.
* | Merge topic 'mingw-64'Brad King2015-04-231-0/+1
|\ \ | | | | | | | | | | | | c775072a cmGeneratorExpressionEvaluationFile: Add missing sys/types.h include
| * | cmGeneratorExpressionEvaluationFile: Add missing sys/types.h includeBrad King2015-04-221-0/+1
| |/ | | | | | | | | | | This is needed for 'mode_t', and on mingw-w64 in particular. We added use of 'mode_t' in commit v3.2.0-rc1~421^2 (file(GENERATE): Use permissions of input file if present, 2014-07-22).
* | Merge topic 'deterministic-CTest-tests'Brad King2015-04-231-2/+2
|\ \ | | | | | | | | | | | | | | | b5b20d20 ctest: Treat ENV{CTEST_OUTPUT_ON_FAILURE} as a boolean fcf9cf6c Tests: Make a CTest test deterministic.
| * | ctest: Treat ENV{CTEST_OUTPUT_ON_FAILURE} as a booleanBrad King2015-04-221-2/+2
| | | | | | | | | | | | | | | Having this variable in the environment should not be enough to activate the behavior. It must also not be set to a false value (or empty value).
* | | CMake Nightly Date StampKitware Robot2015-04-231-1/+1
| | |
* | | Merge topic 'autogen-no-rcc-stderr'Brad King2015-04-221-24/+37
|\ \ \ | | | | | | | | | | | | | | | | | | | | 258ba828 QtAutogen: Process 'rcc --list' stdout and stderr separately (#15523) acd4f01f cmQtAutoGenerators: Split CR stripping out to helper function
| * | | QtAutogen: Process 'rcc --list' stdout and stderr separately (#15523)Brad King2015-04-211-18/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The stderr may have warning messages. We should not treat these lines as resource files. However, we must still recognize error message lines for missing resource files that may be generated. Extend the QtAutogen test to cover a generated resource as the only one listed in a .qrc file. This causes 'rcc --list' to print a warning to stderr that we now intend to ignore.
| * | | cmQtAutoGenerators: Split CR stripping out to helper functionBrad King2015-04-211-7/+12
| | | |
* | | | CMake Nightly Date StampKitware Robot2015-04-221-1/+1
| |_|/ |/| |
* | | Merge topic 'clean-up-cmMakefile'Brad King2015-04-2174-434/+360
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8dc3a67c cmMakefile: Out-of-line the directory methods. 0f3c8cfa cmMakefile: Use method abstraction to access directories. b288a997 cmMakefile: Rename SetStart* directory API to SetCurrent*. 932d53bc cmMakefile: Remove redundant method duplication. 32b8f03a cmMakefile: Port users of GetStart* methods to new names. 54d6a918 cmMakefile: Rename GetCurrent{Output,Binary}Directory. 55d80d0a cmMakefile: Rename GetCurrent{,Source}Directory. b23cf06f cmake: Remove redundant start directories. fcf246ac cmMakefile: Populate Home directories on initialize. 8878bea7 cmake: Initialize Home directories on cmake for find-package mode. 044dc815 Use the Home directories from the cmake class where intended. d67e8f24 cmake: Fix directory used to find the cache 1ea085d1 cmMakefile: Initialize dir definitions early. f034bb2f Remove redundant calls to MakeStartDirectoriesCurrent. 3a68c323 cmMakefile: Fix wrong parameter names.
| * | | cmMakefile: Out-of-line the directory methods.Stephen Kelly2015-04-212-37/+35
| | | |
| * | | cmMakefile: Use method abstraction to access directories.Stephen Kelly2015-04-211-7/+8
| | | |
| * | | cmMakefile: Rename SetStart* directory API to SetCurrent*.Stephen Kelly2015-04-205-10/+10
| | | |
| * | | cmMakefile: Remove redundant method duplication.Stephen Kelly2015-04-201-8/+0
| | | |
| * | | cmMakefile: Port users of GetStart* methods to new names.Stephen Kelly2015-04-2039-142/+146
| | | |
| * | | cmMakefile: Rename GetCurrent{Output,Binary}Directory.Stephen Kelly2015-04-2039-73/+73
| | | | | | | | | | | | | | | | Match names used in CMake code.
| * | | cmMakefile: Rename GetCurrent{,Source}Directory.Stephen Kelly2015-04-2031-61/+65
| | | | | | | | | | | | | | | | Match the names used in cmake code.
| * | | cmake: Remove redundant start directories.Stephen Kelly2015-04-205-69/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | They are maintained as containing the same content as the 'home' directories, but they are never read from. Fix some comments and help strings which confused the two by name. They actually mean what is called CMAKE_SOURCE_DIR in cmake code.
| * | | cmMakefile: Populate Home directories on initialize.Stephen Kelly2015-04-202-6/+3
| | | |
| * | | cmake: Initialize Home directories on cmake for find-package mode.Stephen Kelly2015-04-201-4/+5
| | | | | | | | | | | | | | | | | | | | The Home directories can be used to initialize cmMakefile directories internally.
| * | | Use the Home directories from the cmake class where intended.Stephen Kelly2015-04-202-7/+7
| | | |
| * | | cmake: Fix directory used to find the cacheStephen Kelly2015-04-201-1/+1
| | | | | | | | | | | | | | | | | | | | The start and home directories are the same, but the intent of the code here is to use what is currently called the HomeOutput directory.
| * | | cmMakefile: Initialize dir definitions early.Stephen Kelly2015-04-202-9/+5
| | | |
| * | | Remove redundant calls to MakeStartDirectoriesCurrent.Stephen Kelly2015-04-203-3/+0
| | | | | | | | | | | | | | | | The SetStart{,Output}Directory methods do what it does.
| * | | cmMakefile: Fix wrong parameter names.Stephen Kelly2015-04-202-5/+5
| | |/ | |/|
* | | Merge topic 'disable-cmMakefile-copy'Brad King2015-04-213-49/+4
|\ \ \ | | | | | | | | | | | | | | | | | | | | 80909041 cmMakefile: Disable copy constructor. f3af9517 CPack: Don't copy cmMakefile. Just push a scope instead.