[Cmake-commits] CMake branch, next, updated. v3.6.1-1395-gdbd8384

Brad King brad.king at kitware.com
Wed Aug 24 10:59:10 EDT 2016


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  dbd83843c85a8d6db2a41f4b12c0ad22162cb18e (commit)
       via  828e763260c257920d91037395c7f88e59243367 (commit)
      from  89a08c97932ddd3f5083996a8fcc530ea88077aa (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 -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=dbd83843c85a8d6db2a41f4b12c0ad22162cb18e
commit dbd83843c85a8d6db2a41f4b12c0ad22162cb18e
Merge: 89a08c9 828e763
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Aug 24 10:59:09 2016 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Aug 24 10:59:09 2016 -0400

    Merge topic 'test-RunCMake.CMP0040-fix' into next
    
    828e7632 Tests: Fix RunCMake.CMP0040 custom command syntax


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=828e763260c257920d91037395c7f88e59243367
commit 828e763260c257920d91037395c7f88e59243367
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Aug 24 10:56:53 2016 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Wed Aug 24 10:56:57 2016 -0400

    Tests: Fix RunCMake.CMP0040 custom command syntax

diff --git a/Tests/RunCMake/CMP0040/CMP0040-NEW-existing-target.cmake b/Tests/RunCMake/CMP0040/CMP0040-NEW-existing-target.cmake
index f9c8afd..880b178 100644
--- a/Tests/RunCMake/CMP0040/CMP0040-NEW-existing-target.cmake
+++ b/Tests/RunCMake/CMP0040/CMP0040-NEW-existing-target.cmake
@@ -3,5 +3,5 @@ cmake_policy(SET CMP0040 NEW)
 add_library(foobar empty.cpp)
 
 add_custom_command(TARGET foobar PRE_BUILD
-  COMMAND "${CMAKE_COMMAND} -E echo hello world"
+  COMMAND ${CMAKE_COMMAND} -E echo hello world
 )
diff --git a/Tests/RunCMake/CMP0040/CMP0040-NEW-missing-target.cmake b/Tests/RunCMake/CMP0040/CMP0040-NEW-missing-target.cmake
index 276863d..a9f764c 100644
--- a/Tests/RunCMake/CMP0040/CMP0040-NEW-missing-target.cmake
+++ b/Tests/RunCMake/CMP0040/CMP0040-NEW-missing-target.cmake
@@ -1,5 +1,5 @@
 cmake_policy(SET CMP0040 NEW)
 
 add_custom_command(TARGET foobar PRE_BUILD
-  COMMAND "${CMAKE_COMMAND} -E hello world"
+  COMMAND ${CMAKE_COMMAND} -E hello world
 )
diff --git a/Tests/RunCMake/CMP0040/CMP0040-OLD-existing-target.cmake b/Tests/RunCMake/CMP0040/CMP0040-OLD-existing-target.cmake
index d7ec50d..7a9e91e 100644
--- a/Tests/RunCMake/CMP0040/CMP0040-OLD-existing-target.cmake
+++ b/Tests/RunCMake/CMP0040/CMP0040-OLD-existing-target.cmake
@@ -3,5 +3,5 @@ cmake_policy(SET CMP0040 OLD)
 add_library(foobar empty.cpp)
 
 add_custom_command(TARGET foobar PRE_BUILD
-  COMMAND "${CMAKE_COMMAND} -E echo hello world"
+  COMMAND ${CMAKE_COMMAND} -E echo hello world
 )
diff --git a/Tests/RunCMake/CMP0040/CMP0040-OLD-missing-target.cmake b/Tests/RunCMake/CMP0040/CMP0040-OLD-missing-target.cmake
index ef7a0f7..0f5cd15 100644
--- a/Tests/RunCMake/CMP0040/CMP0040-OLD-missing-target.cmake
+++ b/Tests/RunCMake/CMP0040/CMP0040-OLD-missing-target.cmake
@@ -1,5 +1,5 @@
 cmake_policy(SET CMP0040 OLD)
 
 add_custom_command(TARGET foobar PRE_BUILD
-  COMMAND "${CMAKE_COMMAND} -E echo hello world"
+  COMMAND ${CMAKE_COMMAND} -E echo hello world
 )
diff --git a/Tests/RunCMake/CMP0040/CMP0040-WARN-missing-target.cmake b/Tests/RunCMake/CMP0040/CMP0040-WARN-missing-target.cmake
index 2c3e401..4efeaae 100644
--- a/Tests/RunCMake/CMP0040/CMP0040-WARN-missing-target.cmake
+++ b/Tests/RunCMake/CMP0040/CMP0040-WARN-missing-target.cmake
@@ -1,4 +1,4 @@
 
 add_custom_command(TARGET foobar PRE_BUILD
-  COMMAND "${CMAKE_COMMAND} -E hello world"
+  COMMAND ${CMAKE_COMMAND} -E hello world
 )

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

Summary of changes:
 Tests/RunCMake/CMP0040/CMP0040-NEW-existing-target.cmake |    2 +-
 Tests/RunCMake/CMP0040/CMP0040-NEW-missing-target.cmake  |    2 +-
 Tests/RunCMake/CMP0040/CMP0040-OLD-existing-target.cmake |    2 +-
 Tests/RunCMake/CMP0040/CMP0040-OLD-missing-target.cmake  |    2 +-
 Tests/RunCMake/CMP0040/CMP0040-WARN-missing-target.cmake |    2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list