We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8682ccf commit 3648ca1Copy full SHA for 3648ca1
CMakeLists.txt
@@ -0,0 +1,10 @@
1
+cmake_minimum_required(VERSION 3.1.3 FATAL_ERROR)
2
+project(gtest_mpi CXX)
3
+
4
+add_library(gtest_mpi INTERFACE)
5
6
+target_include_directories(gtest_mpi INTERFACE include)
7
8
+if(NOT (${CMAKE_VERSION} VERSION_LESS "3.8.2"))
9
+ target_compile_features(gtest_mpi INTERFACE cxx_std_11)
10
+endif()
0 commit comments