summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* Remove some files which do not need to be in BootstrapCommands.Stephen Kelly2015-04-123-2/+4
|
* Add some missing includes.Stephen Kelly2015-04-121-0/+2
|
* cmake: Simplify CommandExists method.Stephen Kelly2015-04-121-2/+1
|
* cmake: Rename oddly named variables.Stephen Kelly2015-04-121-6/+6
|
* cmake: Constify GetCommand method.Stephen Kelly2015-04-122-3/+3
|
* cmake: Don't lower-case a string needlessly.Stephen Kelly2015-04-121-1/+1
|
* cmake: Use make_pair instead of Foo::value_type.Stephen Kelly2015-04-121-2/+2
| | | | It works with all supported compilers.
* cmake: out-of-line try compile state methods.Stephen Kelly2015-04-122-4/+12
|
* cmake: Remove duplicate condition.Stephen Kelly2015-04-121-4/+0
|
* cmake: Remove DebugConfigs member.Stephen Kelly2015-04-124-35/+19
| | | | It adds needless complexity to global property handling.
* cmake: Remove method with no external users.Stephen Kelly2015-04-122-8/+5
| | | | Port internal users to access the member.
* cmake: Don't set the CMakeInstance on the Properties member.Stephen Kelly2015-04-121-1/+0
| | | | | There is no need, as global properties have nowhere to chain up to.
* cmGlobalGenerator: Store languages as vector, not map.Stephen Kelly2015-04-122-8/+11
| | | | The second component of the map is never used.
* CMake Nightly Date StampKitware Robot2015-04-111-1/+1
|
* cmake: Teach "-E tar" command a "--format=" optionNils Gladitz2015-04-1013-56/+65
| | | | | | | Allows specifying a libarchive defined archive format currently restricted to 7zip, gnutar, pax, paxr and zip. The default is "paxr" (pax restricted).
* CMake Nightly Date StampKitware Robot2015-04-101-1/+1
|
* Merge topic 'refactor-cache-api'Brad King2015-04-0929-312/+472
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | ba404938 cmCacheManager: Port consumers to non-iterator API. f3922a9a Port QtDialog to non-iterator cache API. 3e6a76e4 Port CursesDialog to non-iterator cache API. 9e641567 cmMakefile: Port away from CacheEntry.Initialized. 1e2dbfce cmCacheManager: Add non-iterator-based API. 60a62a91 cmCacheManager: Return a C string from GetValue. 77f2807c cmCacheManager: Rename GetCacheValue to GetInitializedCacheValue. 14973054 Add API for cache loading, deleting and saving to the cmake class. 1f2c12eb cmMakefile: Remove cache version accessors. 97c50a8d cmMakefile: Simplify GetDefinitions implementation.
| * cmCacheManager: Port consumers to non-iterator API.Stephen Kelly2015-04-0813-115/+117
| | | | | | | | | | This simplifies reasoning about the follow-up commit which ports away from cmCacheManager to a class with the same method names.
| * Port QtDialog to non-iterator cache API.Stephen Kelly2015-04-081-32/+40
| |
| * Port CursesDialog to non-iterator cache API.Stephen Kelly2015-04-083-76/+110
| |
| * cmMakefile: Port away from CacheEntry.Initialized.Stephen Kelly2015-04-081-6/+7
| | | | | | | | The API has no other external users.
| * cmCacheManager: Add non-iterator-based API.Stephen Kelly2015-04-081-0/+75
| | | | | | | | | | | | The iterator pattern is an unusual one for CMake, and it hinders refactoring all configuration-time data manipulation into a single class.
| * cmCacheManager: Return a C string from GetValue.Stephen Kelly2015-04-081-1/+1
| | | | | | | | | | | | | | This is for consistency with other CMake access interfaces such as definitions and properties which use a null value as a 'not present' value. It is source compatible with existing callers, and it returns a pointer into actual real cache entry storage.
| * cmCacheManager: Rename GetCacheValue to GetInitializedCacheValue.Stephen Kelly2015-04-078-37/+51
| | | | | | | | | | Being initialized is a requirement for this method to return something, and is what differentiates it from using GetIterator with it.GetValue.
| * Add API for cache loading, deleting and saving to the cmake class.Stephen Kelly2015-04-079-21/+61
| | | | | | | | | | Migrate existing users of the CacheManager API to use the new API. The CacheManager will be going away soon.
| * cmMakefile: Remove cache version accessors.Stephen Kelly2015-04-074-22/+8
| | | | | | | | | | They are only used by legacy code. Inline them there to simplify cmMakefile.
| * cmMakefile: Simplify GetDefinitions implementation.Stephen Kelly2015-04-071-6/+6
| |
* | Merge topic 'cmake-command-line-help-vs-arch'Brad King2015-04-098-21/+39
|\ \ | | | | | | | | | | | | 1e384337 cmake: Show in --help how to select VS target platform (#15422)
| * | cmake: Show in --help how to select VS target platform (#15422)Brad King2015-04-078-21/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Re-order VS generators from newest to oldest. * Show how to specify a VS generator with a target platform * Increase the option output indentation to avoid extra wrapping with longer generator names.
* | | Merge topic 'link-implicit-libs-full-path'Brad King2015-04-095-1/+54
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 882f48e5 Link libraries by full path even in implicit directories 318cd370 Help: Add link target for Find Modules section of cmake-developer.7 1535dcd8 Tests: Teach RunCMake to optionally merge command output to stdout
| * | | Link libraries by full path even in implicit directoriesBrad King2015-04-095-1/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When CMP0003 was first introduced we wanted to link all libraries by full path. However, some projects had problems on platforms where find_library would find /usr/lib/libfoo.so when the project really wanted to link to /usr/lib/<arch>/libfoo.so and had been working by accident because pre-CMP0003 behavior used -lfoo to link. We first tried to address that in commit v2.6.0~440 (Teach find_library to avoid returning library paths in system directories, 2008-01-23) by returning just "foo" for libraries in implicit link directories. This caused problems for projects expecting find_library to always return a full path. We ended up using the solution in commit v2.6.0~366 (... switch library paths found in implicit link directories to use -l, 2008-01-31). However, the special case for libraries in implicit link directories has also proven problematic and confusing. Introduce policy CMP0060 to switch to linking all libraries by full path even if they are in implicit link directories. Explain in the policy documentation the factors that led to the original approach and now to this approach.
* | | | CMake Nightly Date StampKitware Robot2015-04-091-1/+1
| | | |
* | | | Merge topic 'emulator-property'Brad King2015-04-083-3/+45
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1975d53a Help: Add notes for topic 'emulator-property' 9160d6c2 TestGenerator: Add CROSSCOMPILING_EMULATOR support. e942526b try_run: Use CMAKE_CROSSCOMPILING_EMULATOR. 579c4bec Properties: Add CROSSCOMPILING_EMULATOR target property.
| * | | | TestGenerator: Add CROSSCOMPILING_EMULATOR support.Matt McCormick2015-04-081-1/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prefix test commands with the CROSSCOMPILING_EMULATOR property for target executables. This allows test suites to be run on the host when crosscompiling.
| * | | | try_run: Use CMAKE_CROSSCOMPILING_EMULATOR.Matt McCormick2015-04-081-2/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the CMAKE_CROSSCOMPILING_EMULATOR variable is defined, and CMAKE_CROSSCOMPILING is TRUE, then use CMAKE_CROSSCOMPILING_EMULATOR to run the try_run executables. This prevents the need to populate TryRunResults.cmake when cross compiling.
| * | | | Properties: Add CROSSCOMPILING_EMULATOR target property.Matt McCormick2015-04-071-0/+1
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | Add CROSSCOMPILING_EMULATOR target property for executables. This is used by subsequent patches to run exectuables created for the target system when crosscompiling. The property is initialized by the CMAKE_CROSSCOMPILING_EMULATOR variable when defined.
* | | | Merge topic 'xcode-quote-path'Brad King2015-04-081-0/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | dfd6f1f2 Xcode: Also quote strings containing // (#15487)
| * | | | Xcode: Also quote strings containing // (#15487)Gregor Jasny2015-04-041-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Otherwise those will be interpreted as start of a comment Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
* | | | | CMake Nightly Date StampKitware Robot2015-04-081-1/+1
| |_|_|/ |/| | |
* | | | Merge topic 'refactor-cache-api'Brad King2015-04-0729-471/+311
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 3347c5e4 Revert topic 'refactor-cache-api'
| * | | | Revert topic 'refactor-cache-api'Brad King2015-04-0729-471/+311
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This topic was never tested without some follow-up commits. The GetCacheEntryValue API returns a pointer to memory freed on return. It will have to be revised along with the rest of the original topic.
* | | | | Merge topic 'refactor-cache-api'Brad King2015-04-0729-311/+471
|\ \ \ \ \ | |/ / / / | | | / / | |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9410e24a cmCacheManager: Port consumers to non-iterator API. 7b7ae3b1 Port QtDialog to non-iterator cache API. 228c629c Port CursesDialog to non-iterator cache API. 2e50f5e7 cmMakefile: Port away from CacheEntry.Initialized. e6224367 cmCacheManager: Add non-iterator-based API. 9ada4c04 cmCacheManager: Rename GetCacheValue to GetInitializedCacheValue. 1fe7f24c Add API for cache loading, deleting and saving to the cmake class. 08c642c6 cmMakefile: Remove cache version accessors. cec8f97e cmMakefile: Simplify GetDefinitions implementation.
| * | | cmCacheManager: Port consumers to non-iterator API.Stephen Kelly2015-04-0613-115/+117
| | | | | | | | | | | | | | | | | | | | This simplifies reasoning about the follow-up commit which ports away from cmCacheManager to a class with the same method names.
| * | | Port QtDialog to non-iterator cache API.Stephen Kelly2015-04-061-32/+40
| | | |
| * | | Port CursesDialog to non-iterator cache API.Stephen Kelly2015-04-063-76/+110
| | | |
| * | | cmMakefile: Port away from CacheEntry.Initialized.Stephen Kelly2015-04-061-6/+7
| | | | | | | | | | | | | | | | The API has no other external users.
| * | | cmCacheManager: Add non-iterator-based API.Stephen Kelly2015-04-061-0/+75
| | | | | | | | | | | | | | | | | | | | | | | | The iterator pattern is an unusual one for CMake, and it hinders refactoring all configuration-time data manipulation into a single class.
| * | | cmCacheManager: Rename GetCacheValue to GetInitializedCacheValue.Stephen Kelly2015-04-068-37/+51
| | | | | | | | | | | | | | | | | | | | Being initialized is a requirement for this method to return something, and is what differentiates it from using GetIterator with it.GetValue.
| * | | Add API for cache loading, deleting and saving to the cmake class.Stephen Kelly2015-04-069-21/+61
| | | | | | | | | | | | | | | | | | | | Migrate existing users of the CacheManager API to use the new API. The CacheManager will be going away soon.
| * | | cmMakefile: Remove cache version accessors.Stephen Kelly2015-04-064-22/+8
| | | | | | | | | | | | | | | | | | | | They are only used by legacy code. Inline them there to simplify cmMakefile.