[Cmake-commits] CMake branch, next, updated. v2.8.11.2-4173-g76df8c9

Stephen Kelly steveire at gmail.com
Fri Sep 13 12:24:01 EDT 2013


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, next has been updated
       via  76df8c9b12d17d14dbdbeaf5965f98b4456b28a9 (commit)
       via  8564bcb11223cbd6b53258fa10c18ded3b140bf8 (commit)
      from  a8696225f7f4ff5668bc70b14fc5af30a1effcaa (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=76df8c9b12d17d14dbdbeaf5965f98b4456b28a9
commit 76df8c9b12d17d14dbdbeaf5965f98b4456b28a9
Merge: a869622 8564bcb
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Fri Sep 13 12:23:59 2013 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Sep 13 12:23:59 2013 -0400

    Merge topic 'fix-genex-preprocessing-incomplete-test' into next
    
    8564bcb Genex: Test preprocessing incomplete expressions.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=8564bcb11223cbd6b53258fa10c18ded3b140bf8
commit 8564bcb11223cbd6b53258fa10c18ded3b140bf8
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Fri Sep 13 17:51:10 2013 +0200
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Fri Sep 13 18:22:41 2013 +0200

    Genex: Test preprocessing incomplete expressions.

diff --git a/Tests/RunCMake/include_directories/RunCMakeTest.cmake b/Tests/RunCMake/include_directories/RunCMakeTest.cmake
index f0704f4..f66823e 100644
--- a/Tests/RunCMake/include_directories/RunCMakeTest.cmake
+++ b/Tests/RunCMake/include_directories/RunCMakeTest.cmake
@@ -10,3 +10,4 @@ run_cmake(ImportedTarget)
 run_cmake(RelativePathInGenex)
 run_cmake(CMP0021)
 run_cmake(install_config)
+run_cmake(incomplete-genex)
diff --git a/Tests/RunCMake/include_directories/incomplete-genex.cmake b/Tests/RunCMake/include_directories/incomplete-genex.cmake
new file mode 100644
index 0000000..bb9f607
--- /dev/null
+++ b/Tests/RunCMake/include_directories/incomplete-genex.cmake
@@ -0,0 +1,15 @@
+project(incomplete-genex)
+
+cmake_policy(SET CMP0022 NEW)
+cmake_policy(SET CMP0023 NEW)
+
+add_library(somelib empty.cpp)
+target_include_directories(somelib PUBLIC
+
+  "/s;$<BUILD_INTERFACE:s"
+)
+
+export(TARGETS somelib FILE somelibTargets.cmake)
+
+install(TARGETS somelib EXPORT someExport DESTINATION prefix)
+install(EXPORT someExport DESTINATION prefix)

-----------------------------------------------------------------------

Summary of changes:


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list