Skip to content
Snippets Groups Projects
Commit 31369bc9 authored by Sergey Yakubov's avatar Sergey Yakubov
Browse files

separate option for integration tests

parent 491d7540
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@ set(CMAKE_CXX_STANDARD 11)
project(HIDRA2)
option(BUILD_TESTS "Uses googletest to build tests" OFF)
option(BUILD_INTEGRATION_TESTS "Include integration tests (CMAKE >3.7 is needed)" OFF)
option(BUILD_DOCS "Uses doxygen to build the documentaion" OFF)
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMakeModules/)
......@@ -18,7 +19,7 @@ add_subdirectory(common/cpp)
add_subdirectory(producer/inotify-event-detector-cpp)
add_subdirectory(worker/api/cpp)
if(BUILD_TESTS)
if(BUILD_INTEGRATION_TESTS)
add_subdirectory(tests)
endif()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment