We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a6507f commit bb0179bCopy full SHA for bb0179b
2 files changed
external/CMakeLists.txt
@@ -4,6 +4,10 @@ if (${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
4
message(FATAL_ERROR "In-source build is not supported!")
5
endif()
6
7
+if (${REPO_OPTION_PREFIX}_ENABLE_TESTS AND (NOT TARGET gtest))
8
+ add_subdirectory(gtest)
9
+endif()
10
+
11
add_subdirectory(boost)
12
add_subdirectory(paho_mqtt_c)
13
add_subdirectory(rapidjson)
external/gtest/CMakeLists.txt
@@ -0,0 +1,2 @@
1
+opendaq_set_cmake_folder_context(TARGET_FOLDER_NAME)
2
+opendaq_module_setup_gtest("1.12.1")
0 commit comments