We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fa14dd commit 178a72aCopy full SHA for 178a72a
rmw_test_fixture_implementation/CMakeLists.txt
@@ -1,6 +1,11 @@
1
cmake_minimum_required(VERSION 3.5)
2
project(rmw_test_fixture_implementation LANGUAGES C CXX)
3
4
+# Ensure C++14 support
5
+if(NOT CMAKE_CXX_STANDARD)
6
+ set(CMAKE_CXX_STANDARD 14)
7
+endif()
8
+
9
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
10
add_compile_options(-Wall -Wextra -Wpedantic)
11
endif()
0 commit comments