[Cmake-commits] CMake branch, next, updated. v3.0.0-rc6-3456-g58cb985

Stephen Kelly steveire at gmail.com
Sat May 31 06:16:04 EDT 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, next has been updated
       via  58cb98588616331aabcf5b98c29d9a582a7aed61 (commit)
       via  636aa293aee55be4cfade5623a8e979733314b3c (commit)
      from  6551b3b19f33cc4a7c715742cd3f2c65f9314033 (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=58cb98588616331aabcf5b98c29d9a582a7aed61
commit 58cb98588616331aabcf5b98c29d9a582a7aed61
Merge: 6551b3b 636aa29
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sat May 31 06:16:03 2014 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sat May 31 06:16:03 2014 -0400

    Merge topic 'feature-extensions-by-default' into next
    
    636aa293 Modify tests.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=636aa293aee55be4cfade5623a8e979733314b3c
commit 636aa293aee55be4cfade5623a8e979733314b3c
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sat May 31 12:13:36 2014 +0200
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Sat May 31 12:13:36 2014 +0200

    Modify tests.

diff --git a/Tests/RunCMake/CompileFeatures/RequireCXX11.cmake b/Tests/RunCMake/CompileFeatures/RequireCXX11.cmake
index 10b251a..f60504f 100644
--- a/Tests/RunCMake/CompileFeatures/RequireCXX11.cmake
+++ b/Tests/RunCMake/CompileFeatures/RequireCXX11.cmake
@@ -1,4 +1,5 @@
 
 add_library(foo empty.cpp)
 set_property(TARGET foo PROPERTY CXX_STANDARD 11)
+set_property(TARGET foo PROPERTY CXX_EXTENSIONS FALSE)
 set_property(TARGET foo PROPERTY CXX_STANDARD_REQUIRED TRUE)
diff --git a/Tests/RunCMake/CompileFeatures/RequireCXX11Ext.cmake b/Tests/RunCMake/CompileFeatures/RequireCXX11Ext.cmake
index 9e726c8..10b251a 100644
--- a/Tests/RunCMake/CompileFeatures/RequireCXX11Ext.cmake
+++ b/Tests/RunCMake/CompileFeatures/RequireCXX11Ext.cmake
@@ -1,5 +1,4 @@
 
 add_library(foo empty.cpp)
 set_property(TARGET foo PROPERTY CXX_STANDARD 11)
-set_property(TARGET foo PROPERTY CXX_EXTENSIONS TRUE)
 set_property(TARGET foo PROPERTY CXX_STANDARD_REQUIRED TRUE)
diff --git a/Tests/RunCMake/CompileFeatures/RequireCXX11ExtVariable.cmake b/Tests/RunCMake/CompileFeatures/RequireCXX11ExtVariable.cmake
index 8f6755f..29703db 100644
--- a/Tests/RunCMake/CompileFeatures/RequireCXX11ExtVariable.cmake
+++ b/Tests/RunCMake/CompileFeatures/RequireCXX11ExtVariable.cmake
@@ -2,4 +2,3 @@
 set(CMAKE_CXX_STANDARD_REQUIRED TRUE)
 add_library(foo empty.cpp)
 set_property(TARGET foo PROPERTY CXX_STANDARD 11)
-set_property(TARGET foo PROPERTY CXX_EXTENSIONS TRUE)
diff --git a/Tests/RunCMake/CompileFeatures/RequireCXX11Variable.cmake b/Tests/RunCMake/CompileFeatures/RequireCXX11Variable.cmake
index 29703db..c480997 100644
--- a/Tests/RunCMake/CompileFeatures/RequireCXX11Variable.cmake
+++ b/Tests/RunCMake/CompileFeatures/RequireCXX11Variable.cmake
@@ -2,3 +2,4 @@
 set(CMAKE_CXX_STANDARD_REQUIRED TRUE)
 add_library(foo empty.cpp)
 set_property(TARGET foo PROPERTY CXX_STANDARD 11)
+set_property(TARGET foo PROPERTY CXX_EXTENSIONS FALSE)
diff --git a/Tests/RunCMake/CompileFeatures/RequireCXX98.cmake b/Tests/RunCMake/CompileFeatures/RequireCXX98.cmake
index 4ea595e..fd9fb60 100644
--- a/Tests/RunCMake/CompileFeatures/RequireCXX98.cmake
+++ b/Tests/RunCMake/CompileFeatures/RequireCXX98.cmake
@@ -2,3 +2,4 @@
 add_library(foo empty.cpp)
 set_property(TARGET foo PROPERTY CXX_STANDARD 98)
 set_property(TARGET foo PROPERTY CXX_STANDARD_REQUIRED TRUE)
+set_property(TARGET foo PROPERTY CXX_EXTENSIONS FALSE)
diff --git a/Tests/RunCMake/CompileFeatures/RequireCXX98Ext.cmake b/Tests/RunCMake/CompileFeatures/RequireCXX98Ext.cmake
index fdf4cc7..4ea595e 100644
--- a/Tests/RunCMake/CompileFeatures/RequireCXX98Ext.cmake
+++ b/Tests/RunCMake/CompileFeatures/RequireCXX98Ext.cmake
@@ -1,5 +1,4 @@
 
 add_library(foo empty.cpp)
 set_property(TARGET foo PROPERTY CXX_STANDARD 98)
-set_property(TARGET foo PROPERTY CXX_EXTENSIONS TRUE)
 set_property(TARGET foo PROPERTY CXX_STANDARD_REQUIRED TRUE)
diff --git a/Tests/RunCMake/CompileFeatures/RequireCXX98ExtVariable.cmake b/Tests/RunCMake/CompileFeatures/RequireCXX98ExtVariable.cmake
index a26a22d..0e3ef8d 100644
--- a/Tests/RunCMake/CompileFeatures/RequireCXX98ExtVariable.cmake
+++ b/Tests/RunCMake/CompileFeatures/RequireCXX98ExtVariable.cmake
@@ -2,4 +2,3 @@
 set(CMAKE_CXX_STANDARD_REQUIRED TRUE)
 add_library(foo empty.cpp)
 set_property(TARGET foo PROPERTY CXX_STANDARD 98)
-set_property(TARGET foo PROPERTY CXX_EXTENSIONS TRUE)
diff --git a/Tests/RunCMake/CompileFeatures/RequireCXX98Variable.cmake b/Tests/RunCMake/CompileFeatures/RequireCXX98Variable.cmake
index 0e3ef8d..7562264 100644
--- a/Tests/RunCMake/CompileFeatures/RequireCXX98Variable.cmake
+++ b/Tests/RunCMake/CompileFeatures/RequireCXX98Variable.cmake
@@ -2,3 +2,4 @@
 set(CMAKE_CXX_STANDARD_REQUIRED TRUE)
 add_library(foo empty.cpp)
 set_property(TARGET foo PROPERTY CXX_STANDARD 98)
+set_property(TARGET foo PROPERTY CXX_EXTENSIONS FALSE)

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

Summary of changes:
 Tests/RunCMake/CompileFeatures/RequireCXX11.cmake            |    1 +
 Tests/RunCMake/CompileFeatures/RequireCXX11Ext.cmake         |    1 -
 Tests/RunCMake/CompileFeatures/RequireCXX11ExtVariable.cmake |    1 -
 Tests/RunCMake/CompileFeatures/RequireCXX11Variable.cmake    |    1 +
 Tests/RunCMake/CompileFeatures/RequireCXX98.cmake            |    1 +
 Tests/RunCMake/CompileFeatures/RequireCXX98Ext.cmake         |    1 -
 Tests/RunCMake/CompileFeatures/RequireCXX98ExtVariable.cmake |    1 -
 Tests/RunCMake/CompileFeatures/RequireCXX98Variable.cmake    |    1 +
 8 files changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list