[Cmake-commits] CMake branch, next, updated. v2.8.11.2-4010-g5d9c38c
Rolf Eike Beer
eike at sf-mail.de
Tue Aug 27 13:40:39 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 5d9c38ce546390b0ffc910b4c73f9297451858c1 (commit)
via 6f148c3ca1369f073785a7d07164b723fab4c66c (commit)
from 3ea4771a5e564059385ffd9709a8e5dfc36736ae (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=5d9c38ce546390b0ffc910b4c73f9297451858c1
commit 5d9c38ce546390b0ffc910b4c73f9297451858c1
Merge: 3ea4771 6f148c3
Author: Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Tue Aug 27 13:40:37 2013 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Aug 27 13:40:37 2013 -0400
Merge topic 'cxx11' into next
6f148c3 CXXFeatures: fix whitespace and one string compare
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6f148c3ca1369f073785a7d07164b723fab4c66c
commit 6f148c3ca1369f073785a7d07164b723fab4c66c
Author: Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Tue Aug 27 19:39:41 2013 +0200
Commit: Rolf Eike Beer <eike at sf-mail.de>
CommitDate: Tue Aug 27 19:40:25 2013 +0200
CXXFeatures: fix whitespace and one string compare
diff --git a/Modules/FindCXXFeatures.cmake b/Modules/FindCXXFeatures.cmake
index 70a7deb..e885e5c 100644
--- a/Modules/FindCXXFeatures.cmake
+++ b/Modules/FindCXXFeatures.cmake
@@ -2,25 +2,25 @@
#
# When found it will set the following variables
#
-# CXX11_COMPILER_FLAGS - the compiler flags needed to get C++11 features
+# CXX11_COMPILER_FLAGS - the compiler flags needed to get C++11 features
#
-# CXXFeatures_auto_FOUND - auto keyword
-# CXXFeatures_class_override_final_FOUND - override and final keywords for classes and methods
-# CXXFeatures_constexpr_FOUND - constexpr keyword
-# CXXFeatures_cstdint_header_FOUND - cstdint header
-# CXXFeatures_decltype_FOUND - decltype keyword
-# CXXFeatures_defaulted_functions_FOUND - default keyword for functions
+# CXXFeatures_auto_FOUND - auto keyword
+# CXXFeatures_class_override_final_FOUND - override and final keywords for classes and methods
+# CXXFeatures_constexpr_FOUND - constexpr keyword
+# CXXFeatures_cstdint_header_FOUND - cstdint header
+# CXXFeatures_decltype_FOUND - decltype keyword
+# CXXFeatures_defaulted_functions_FOUND - default keyword for functions
# CXXFeatures_delegating_constructors_FOUND - delegating constructors
-# CXXFeatures_deleted_functions_FOUND - delete keyword for functions
-# CXXFeatures_func_identifier_FOUND - __func__ preprocessor constant
-# CXXFeatures_initializer_list_FOUND - initializer list
-# CXXFeatures_lambda_FOUND - lambdas
-# CXXFeatures_long_long_FOUND - long long signed & unsigned types
-# CXXFeatures_nullptr_FOUND - nullptr
-# CXXFeatures_rvalue_references_FOUND - rvalue references
-# CXXFeatures_sizeof_member_FOUND - sizeof() non-static members
-# CXXFeatures_static_assert_FOUND - static_assert()
-# CXXFeatures_variadic_templates_FOUND - variadic templates
+# CXXFeatures_deleted_functions_FOUND - delete keyword for functions
+# CXXFeatures_func_identifier_FOUND - __func__ preprocessor constant
+# CXXFeatures_initializer_list_FOUND - initializer list
+# CXXFeatures_lambda_FOUND - lambdas
+# CXXFeatures_long_long_FOUND - long long signed & unsigned types
+# CXXFeatures_nullptr_FOUND - nullptr
+# CXXFeatures_rvalue_references_FOUND - rvalue references
+# CXXFeatures_sizeof_member_FOUND - sizeof() non-static members
+# CXXFeatures_static_assert_FOUND - static_assert()
+# CXXFeatures_variadic_templates_FOUND - variadic templates
#=============================================================================
# Copyright 2011-2013 Rolf Eike Beer <eike at sf-mail.de>
@@ -53,7 +53,7 @@ function(test_set_flag FLAG NAME)
endif ()
endfunction()
-if (CMAKE_CXX_COMPILER_ID MATCHES "XL")
+if (CMAKE_CXX_COMPILER_ID STREQUAL "XL")
test_set_flag("-qlanglvl=extended0x" CXX0x)
elseif (CMAKE_CXX_COMPILER_ID MATCHES "(Borland|Watcom)")
# No C++11 flag for those compilers, but check_cxx_compiler_flag()
-----------------------------------------------------------------------
Summary of changes:
Modules/FindCXXFeatures.cmake | 36 ++++++++++++++++++------------------
1 files changed, 18 insertions(+), 18 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list