[Cmake-commits] CMake branch, master, updated. v2.8.12.1-1147-g15562c1
Brad King
brad.king at kitware.com
Thu Jan 9 09:37:21 EST 2014
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, master has been updated
via 15562c11efa3c3a9e0f28f9ad52b71623c254b05 (commit)
via 73e93400e2efab2096618ff58a5ad68236cd04aa (commit)
via ab9f58f657a244d182ccd9a9361fae0a7c068f20 (commit)
via 37ebeb910073aa142b41daa949dabf978e4d749d (commit)
via 6aabb6a62b679f64e278087fc671cd33a35bf871 (commit)
via 5bb53f6b731228e4592066329e8992987289a986 (commit)
from 69c366a28178027a5cf2629c0240d1709ae9ab55 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=15562c11efa3c3a9e0f28f9ad52b71623c254b05
commit 15562c11efa3c3a9e0f28f9ad52b71623c254b05
Merge: 69c366a 73e9340
Author: Brad King <brad.king at kitware.com>
AuthorDate: Thu Jan 9 09:37:20 2014 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Jan 9 09:37:20 2014 -0500
Merge topic 'policies'
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.
-----------------------------------------------------------------------
Summary of changes:
Help/manual/cmake-policies.7.rst | 3 ++
Help/policy/CMP0043.rst | 39 ++++++++++++++++++++
Help/policy/CMP0044.rst | 19 ++++++++++
Help/policy/CMP0045.rst | 17 +++++++++
Modules/FindQt4.cmake | 26 ++++++++------
Source/cmGeneratorExpressionEvaluator.cxx | 31 +++++++++++++++-
Source/cmGetTargetPropertyCommand.cxx | 31 +++++++++++++++-
Source/cmGlobalGenerator.cxx | 23 +++++++-----
Source/cmMakefile.cxx | 28 ++++++++-------
Source/cmPolicies.cxx | 15 ++++++++
Source/cmPolicies.h | 3 ++
Source/cmTarget.cxx | 36 ++++++++++++++----
Tests/CompileDefinitions/compiletest.c | 4 ++
.../CompileDefinitions/target_prop/CMakeLists.txt | 3 ++
Tests/GeneratorExpression/CMP0044/CMakeLists.txt | 19 ++++++++++
.../GeneratorExpression/CMP0044/cmp0044-check.cpp | 26 +++++++++++++
Tests/GeneratorExpression/CMakeLists.txt | 6 +++
.../CMP0043-NEW-result.txt} | 0
.../CMP0043-NEW-stderr.txt} | 0
Tests/RunCMake/CMP0043/CMP0043-NEW.cmake | 7 ++++
.../CMP0043-OLD-result.txt} | 0
.../CMP0043-OLD-stderr.txt} | 0
Tests/RunCMake/CMP0043/CMP0043-OLD.cmake | 7 ++++
.../CMP0043-WARN-result.txt} | 0
Tests/RunCMake/CMP0043/CMP0043-WARN-stderr.txt | 5 +++
Tests/RunCMake/CMP0043/CMP0043-WARN.cmake | 5 +++
Tests/RunCMake/CMP0043/CMakeLists.txt | 7 ++++
Tests/RunCMake/CMP0043/RunCMakeTest.cmake | 7 ++++
Tests/RunCMake/{CMP0022 => CMP0043}/empty.cpp | 0
.../CMP0045-NEW-result.txt} | 0
Tests/RunCMake/CMP0045/CMP0045-NEW-stderr.txt | 4 ++
Tests/RunCMake/CMP0045/CMP0045-NEW.cmake | 4 ++
.../CMP0045-OLD-result.txt} | 0
.../CMP0045-OLD-stderr.txt} | 0
Tests/RunCMake/CMP0045/CMP0045-OLD.cmake | 4 ++
.../CMP0045-WARN-result.txt} | 0
Tests/RunCMake/CMP0045/CMP0045-WARN-stderr.txt | 9 +++++
Tests/RunCMake/CMP0045/CMP0045-WARN.cmake | 2 +
Tests/RunCMake/{CMP0041 => CMP0045}/CMakeLists.txt | 0
Tests/RunCMake/CMP0045/RunCMakeTest.cmake | 5 +++
Tests/RunCMake/{CMP0022 => CMP0045}/empty.cpp | 0
Tests/RunCMake/CMakeLists.txt | 2 +
.../CMP0044-WARN-result.txt} | 0
.../GeneratorExpression/CMP0044-WARN-stderr.txt | 7 ++++
.../GeneratorExpression/CMP0044-WARN.cmake | 17 +++++++++
.../GeneratorExpression/RunCMakeTest.cmake | 1 +
46 files changed, 378 insertions(+), 44 deletions(-)
create mode 100644 Help/policy/CMP0043.rst
create mode 100644 Help/policy/CMP0044.rst
create mode 100644 Help/policy/CMP0045.rst
create mode 100644 Tests/GeneratorExpression/CMP0044/CMakeLists.txt
create mode 100644 Tests/GeneratorExpression/CMP0044/cmp0044-check.cpp
copy Tests/RunCMake/{CMP0022/CMP0022-WARN-empty-old-result.txt => CMP0043/CMP0043-NEW-result.txt} (100%)
copy Tests/RunCMake/{CMP0022/CMP0022-NOWARN-exe-stderr.txt => CMP0043/CMP0043-NEW-stderr.txt} (100%)
create mode 100644 Tests/RunCMake/CMP0043/CMP0043-NEW.cmake
copy Tests/RunCMake/{CMP0022/CMP0022-WARN-empty-old-result.txt => CMP0043/CMP0043-OLD-result.txt} (100%)
copy Tests/RunCMake/{CMP0022/CMP0022-NOWARN-exe-stderr.txt => CMP0043/CMP0043-OLD-stderr.txt} (100%)
create mode 100644 Tests/RunCMake/CMP0043/CMP0043-OLD.cmake
copy Tests/RunCMake/{CMP0022/CMP0022-WARN-empty-old-result.txt => CMP0043/CMP0043-WARN-result.txt} (100%)
create mode 100644 Tests/RunCMake/CMP0043/CMP0043-WARN-stderr.txt
create mode 100644 Tests/RunCMake/CMP0043/CMP0043-WARN.cmake
create mode 100644 Tests/RunCMake/CMP0043/CMakeLists.txt
create mode 100644 Tests/RunCMake/CMP0043/RunCMakeTest.cmake
copy Tests/RunCMake/{CMP0022 => CMP0043}/empty.cpp (100%)
copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => CMP0045/CMP0045-NEW-result.txt} (100%)
create mode 100644 Tests/RunCMake/CMP0045/CMP0045-NEW-stderr.txt
create mode 100644 Tests/RunCMake/CMP0045/CMP0045-NEW.cmake
copy Tests/RunCMake/{CMP0022/CMP0022-WARN-empty-old-result.txt => CMP0045/CMP0045-OLD-result.txt} (100%)
copy Tests/RunCMake/{CMP0022/CMP0022-NOWARN-exe-stderr.txt => CMP0045/CMP0045-OLD-stderr.txt} (100%)
create mode 100644 Tests/RunCMake/CMP0045/CMP0045-OLD.cmake
copy Tests/RunCMake/{CMP0022/CMP0022-WARN-empty-old-result.txt => CMP0045/CMP0045-WARN-result.txt} (100%)
create mode 100644 Tests/RunCMake/CMP0045/CMP0045-WARN-stderr.txt
create mode 100644 Tests/RunCMake/CMP0045/CMP0045-WARN.cmake
copy Tests/RunCMake/{CMP0041 => CMP0045}/CMakeLists.txt (100%)
create mode 100644 Tests/RunCMake/CMP0045/RunCMakeTest.cmake
copy Tests/RunCMake/{CMP0022 => CMP0045}/empty.cpp (100%)
copy Tests/RunCMake/{CMP0022/CMP0022-WARN-empty-old-result.txt => GeneratorExpression/CMP0044-WARN-result.txt} (100%)
create mode 100644 Tests/RunCMake/GeneratorExpression/CMP0044-WARN-stderr.txt
create mode 100644 Tests/RunCMake/GeneratorExpression/CMP0044-WARN.cmake
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list