[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-2372-gd79ad3a

Rolf Eike Beer eike at sf-mail.de
Tue Apr 15 15:08:08 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  d79ad3ac8f69007c79cab5e7d1210102644f7ea5 (commit)
       via  d0ea900c9805bb12c59230a04ddfc443a5c94316 (commit)
      from  e94b32fedf93c59644576d03caaf3b9acfe762ce (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=d79ad3ac8f69007c79cab5e7d1210102644f7ea5
commit d79ad3ac8f69007c79cab5e7d1210102644f7ea5
Merge: e94b32f d0ea900
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Tue Apr 15 15:08:07 2014 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Apr 15 15:08:07 2014 -0400

    Merge topic 'hp-cpp98-tests' into next
    
    d0ea900c fix variable name


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d0ea900c9805bb12c59230a04ddfc443a5c94316
commit d0ea900c9805bb12c59230a04ddfc443a5c94316
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Tue Apr 15 21:07:46 2014 +0200
Commit:     Rolf Eike Beer <eike at sf-mail.de>
CommitDate: Tue Apr 15 21:07:46 2014 +0200

    fix variable name

diff --git a/Tests/AliasTarget/CMakeLists.txt b/Tests/AliasTarget/CMakeLists.txt
index 448c0dc..a48498a 100644
--- a/Tests/AliasTarget/CMakeLists.txt
+++ b/Tests/AliasTarget/CMakeLists.txt
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 2.8.11)
 project(AliasTarget)
 
-set(CXX_STANDARD 98)
+set(CMAKE_CXX_STANDARD 98)
 
 add_library(foo SHARED empty.cpp)
 add_library(PREFIX::Foo ALIAS foo)
diff --git a/Tests/Complex/CMakeLists.txt b/Tests/Complex/CMakeLists.txt
index 3e1ce00..3aaa5c7 100644
--- a/Tests/Complex/CMakeLists.txt
+++ b/Tests/Complex/CMakeLists.txt
@@ -395,7 +395,7 @@ endif()
 #
 # This tests needs Ansi C++98
 #
-set(CXX_STANDARD 98)
+set(CMAKE_CXX_STANDARD 98)
 
 #
 # Create the libs and the main exe
diff --git a/Tests/ComplexOneConfig/CMakeLists.txt b/Tests/ComplexOneConfig/CMakeLists.txt
index 89b094a..5f7863f 100644
--- a/Tests/ComplexOneConfig/CMakeLists.txt
+++ b/Tests/ComplexOneConfig/CMakeLists.txt
@@ -365,7 +365,7 @@ endif()
 #
 # This tests needs Ansi C++98
 #
-set(CXX_STANDARD 98)
+set(CMAKE_CXX_STANDARD 98)
 
 #
 # Create the libs and the main exe
diff --git a/Tests/Module/GenerateExportHeader/CMakeLists.txt b/Tests/Module/GenerateExportHeader/CMakeLists.txt
index 6206ecb..6427bfd 100644
--- a/Tests/Module/GenerateExportHeader/CMakeLists.txt
+++ b/Tests/Module/GenerateExportHeader/CMakeLists.txt
@@ -57,7 +57,7 @@ endif()
 
 include(GenerateExportHeader)
 
-set(CXX_STANDARD 98)
+set(CMAKE_CXX_STANDARD 98)
 
 add_subdirectory(lib_shared_and_static)
 
diff --git a/Tests/Plugin/CMakeLists.txt b/Tests/Plugin/CMakeLists.txt
index 89cd088..7266c64 100644
--- a/Tests/Plugin/CMakeLists.txt
+++ b/Tests/Plugin/CMakeLists.txt
@@ -25,7 +25,7 @@ include_directories(
   )
 
 # We need proper C++98 support from the compiler
-set(CXX_STANDARD 98)
+set(CMAKE_CXX_STANDARD 98)
 
 # Create an executable that exports an API for use by plugins.
 add_executable(example_exe src/example_exe.cxx)

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

Summary of changes:
 Tests/AliasTarget/CMakeLists.txt                 |    2 +-
 Tests/Complex/CMakeLists.txt                     |    2 +-
 Tests/ComplexOneConfig/CMakeLists.txt            |    2 +-
 Tests/Module/GenerateExportHeader/CMakeLists.txt |    2 +-
 Tests/Plugin/CMakeLists.txt                      |    2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list