Stephen Kelly
9410e24a4a
cmCacheManager: Port consumers to non-iterator API.
...
This simplifies reasoning about the follow-up commit which ports
away from cmCacheManager to a class with the same method names.
2015-04-06 17:58:55 +02:00
Stephen Kelly
7b7ae3b1a1
Port QtDialog to non-iterator cache API.
2015-04-06 17:58:55 +02:00
Stephen Kelly
228c629c18
Port CursesDialog to non-iterator cache API.
2015-04-06 17:58:55 +02:00
Stephen Kelly
2e50f5e7d9
cmMakefile: Port away from CacheEntry.Initialized.
...
The API has no other external users.
2015-04-06 17:58:55 +02:00
Stephen Kelly
e62243674e
cmCacheManager: Add non-iterator-based API.
...
The iterator pattern is an unusual one for CMake, and it hinders
refactoring all configuration-time data manipulation into a
single class.
2015-04-06 17:58:55 +02:00
Stephen Kelly
9ada4c0433
cmCacheManager: Rename GetCacheValue to GetInitializedCacheValue.
...
Being initialized is a requirement for this method to return something,
and is what differentiates it from using GetIterator with it.GetValue.
2015-04-06 17:58:55 +02:00
Stephen Kelly
1fe7f24c2b
Add API for cache loading, deleting and saving to the cmake class.
...
Migrate existing users of the CacheManager API to use the new
API. The CacheManager will be going away soon.
2015-04-06 17:58:55 +02:00
Stephen Kelly
08c642c6ae
cmMakefile: Remove cache version accessors.
...
They are only used by legacy code. Inline them there to simplify
cmMakefile.
2015-04-06 17:58:54 +02:00
Stephen Kelly
cec8f97e57
cmMakefile: Simplify GetDefinitions implementation.
2015-04-06 17:58:54 +02:00
Brad King
9b7213dc47
Merge topic 'minor-cleanups'
...
c37cf7fa cmCacheManager: Remove unused method
64556e3d cmCacheManager: Remove unused overloads.
23bb5d22 cmCacheManager: Remove use of intermediate overload.
510562e3 cmGlobalGenerator: Don't fetch the cache manager in a loop.
629e9489 cmake: Clear member rather than explicit erase.
d280bae9 cmake: Be clear that there is no chaining after global properties.
364c7ea1 cmake: Remove unused method.
47acfe1d cmake: Remove unused member.
a469bf7b cmMakefile: Remove one wrong and one insufficiently helpful comment.
257c1649 cmListFile: Remove unused member.
fe17092c cmMakefile: Remove bogus comment.
199b28ac Remove duplicate tag name.
2015-04-06 09:19:34 -04:00
Brad King
0e6b00ee49
Merge topic 'cpack-one-component-only'
...
0ffd3534 CPack single component packaging
2015-04-06 09:11:34 -04:00
Brad King
b9c1eb4dcc
Merge topic 'makefile-depscan-BOM'
...
af924827 Makefile: Tolerate a BOM while scanning source dependencies (#15493 )
2015-04-06 08:58:17 -04:00
Brad King
9ddbacdb74
Merge topic 'test_cpack_symlinks'
...
5f686b8a Tests: Add case for CPack source package with symlinks
aca1d93b cpack: Disable CMake Cygwin legacy warning while packaging
2015-04-06 08:58:14 -04:00
Stephen Kelly
c22f6c1504
Remove unused includes.
2015-04-06 14:41:05 +02:00
Kitware Robot
03f7a509ef
CMake Nightly Date Stamp
2015-04-06 00:01:04 -04:00
Domen Vrankar
0ffd35340e
CPack single component packaging
...
RPM, DEB and archive packages were not created
in cases when CPACK_<generator>_COMPONENT_INSTALL
was set to ON and a single component existed.
Patch also changes CPackRPM test to implicitly
test for this case.
2015-04-05 22:49:41 +02:00
Stephen Kelly
c37cf7fa9e
cmCacheManager: Remove unused method
2015-04-05 10:26:10 +02:00
Stephen Kelly
64556e3dfa
cmCacheManager: Remove unused overloads.
2015-04-05 10:26:10 +02:00
Stephen Kelly
23bb5d225b
cmCacheManager: Remove use of intermediate overload.
2015-04-05 10:26:10 +02:00
Stephen Kelly
510562e3e7
cmGlobalGenerator: Don't fetch the cache manager in a loop.
...
It doesn't change from Makefile to Makefile.
2015-04-05 10:26:10 +02:00
Stephen Kelly
629e948936
cmake: Clear member rather than explicit erase.
2015-04-05 10:26:10 +02:00
Stephen Kelly
d280bae98f
cmake: Be clear that there is no chaining after global properties.
2015-04-05 10:26:09 +02:00
Stephen Kelly
364c7ea187
cmake: Remove unused method.
2015-04-05 10:26:09 +02:00
Stephen Kelly
47acfe1d1e
cmake: Remove unused member.
2015-04-05 10:10:00 +02:00
Kitware Robot
a3e2de3a31
CMake Nightly Date Stamp
2015-04-05 00:01:04 -04:00
Gregor Jasny
dfd6f1f290
Xcode: Also quote strings containing // ( #15487 )
...
Otherwise those will be interpreted as start of a comment
Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
2015-04-04 22:13:45 +02:00
Stephen Kelly
a469bf7b98
cmMakefile: Remove one wrong and one insufficiently helpful comment.
2015-04-04 18:31:03 +02:00
Stephen Kelly
257c16495a
cmListFile: Remove unused member.
...
It is written, but not read since commit v2.4.0~575 (ENH: Since list file
cache does not make much sense any more ..., 2006-02-07).
2015-04-04 18:31:03 +02:00
Stephen Kelly
fe17092c20
cmMakefile: Remove bogus comment.
2015-04-04 18:31:03 +02:00
Stephen Kelly
199b28ac3a
Remove duplicate tag name.
2015-04-04 18:30:52 +02:00
Kitware Robot
c6624cfdc1
CMake Nightly Date Stamp
2015-04-04 00:01:05 -04:00
Gilles Khouzam
01a9ab0def
VS: Add support for XAML source files
...
XAML files are by default of type Page in the vcxproj and can be
overriden by setting the VS_XAML_TYPE property. The .cpp and .h file
of the same name are automatically added as depending on the XAML file.
New VSXaml test builds a basic XAML WindowsStore 8.1 app with VS2013.
2015-04-03 13:40:35 -04:00
Brad King
af92482712
Makefile: Tolerate a BOM while scanning source dependencies ( #15493 )
...
Otherwise an #include directive on the first line of a source file is
ignored if the file contains a Byte-Order-Mark.
Suggested-by: Aleksey Konovalov <konovalov.aleks@gmail.com>
2015-04-03 13:04:57 -04:00
Kitware Robot
2978a5549a
CMake Nightly Date Stamp
2015-04-03 00:01:04 -04:00
Brad King
0983825057
Merge topic 'remove-DEFINITIONS-directory-property'
...
06f61c26 Do not treat DEFINITIONS as a built-in directory property
2015-04-02 13:06:03 -04:00
Stephen Kelly
06f61c26cf
Do not treat DEFINITIONS as a built-in directory property
...
Add policy CMP0059 to cover this change. The property has been
deprecated since CMake 2.4 anyway.
This will help clean up cmMakefile -- the DefineFlagsOrig member should
not need to exist.
2015-04-02 13:00:48 -04:00
Brad King
9780859b7e
Merge topic 'clean-up-cmMakefile'
...
f2e07a6d cmMakefile: Remove unused PreOrder member.
aafe2821 cmMakefile: Remove unused Prefix member.
1fcf590b cmMakefile: Remove unused SubDirectoryOrder member.
c3a60cc9 cmMakefile: Remove AddExtraDirectory method.
37897347 cmMakefile: Remove unused method.
d7539ced cmMakefile: Remove bogus comment.
2015-04-02 12:57:41 -04:00
Brad King
1a775917a5
Merge topic 'xcode-source-type-metal'
...
078c7321 Xcode: Add file type for Metal shader files
2015-04-02 12:57:18 -04:00
Kitware Robot
f707460e42
CMake Nightly Date Stamp
2015-04-02 00:01:04 -04:00
Sean James
078c732185
Xcode: Add file type for Metal shader files
2015-04-01 15:15:22 -04:00
Stephen Kelly
f2e07a6d90
cmMakefile: Remove unused PreOrder member.
...
Remove references from dependendent API.
2015-04-01 20:32:48 +02:00
Stephen Kelly
aafe282188
cmMakefile: Remove unused Prefix member.
...
Unused since it was added in commit 1f42f521 (NEW: move from tools
and config to create CMake, 2000-08-29).
2015-04-01 20:32:48 +02:00
Stephen Kelly
1fcf590b14
cmMakefile: Remove unused SubDirectoryOrder member.
...
The last use was removed in v2.4.0~2054 (ENH: add support for out
of source source, 2005-03-14)
2015-04-01 20:32:47 +02:00
Stephen Kelly
c3a60cc9cc
cmMakefile: Remove AddExtraDirectory method.
...
It has no effect.
2015-04-01 20:32:47 +02:00
Stephen Kelly
37897347b3
cmMakefile: Remove unused method.
...
The last user was removed in commit v2.4.0~1516 (ENH: removed unused
files, 2005-06-20).
2015-04-01 20:32:47 +02:00
Stephen Kelly
d7539ced64
cmMakefile: Remove bogus comment.
2015-04-01 20:32:47 +02:00
Brad King
0de7807c36
Merge topic 'cpack-deb-format-cast'
...
e86f44b7 cmCPackDebGenerator: Cast file mode to proper type for %o formatter
2015-04-01 13:19:41 -04:00
Brad King
4a821a47f7
Merge topic 'cpack-fix-preinstall-tool'
...
93a3ec8b CPack: Fix make tool selection during preinstall (#15483 )
2015-04-01 13:19:37 -04:00
Brad King
aa508a5299
Merge topic 'makefile-DELETE_ON_ERROR'
...
44990732 Help: Add notes for topic 'makefile-DELETE_ON_ERROR'
4adf1dad Makefile: Tell GNU make to delete rule outputs on error (#15474 )
2015-04-01 13:19:32 -04:00
Brad King
aca1d93bd9
cpack: Disable CMake Cygwin legacy warning while packaging
...
In cpack we load the platform information modules to give the
configuration scripts access to the host system information.
CYGWIN.cmake warns unless we explicitly tell it not to warn
since there is no chance for a cmake_minimum_required(VERSION)
to be called.
2015-04-01 12:57:43 -04:00