Skip to content
Snippets Groups Projects
Commit b6d92bf8 authored by Tim Schoof's avatar Tim Schoof Committed by Sergey Yakubov
Browse files

Make building event monitor producer optional

parent 20b08da9
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,7 @@ option(BUILD_TESTS "Uses googletest to build tests" OFF)
option(BUILD_INTEGRATION_TESTS "Include integration tests (CMAKE >3.7 is needed)" OFF)
option(BUILD_CPP_DOCS "Uses doxygen to build the C++ documentaion" OFF)
option(BUILD_BROKER "Build broker" OFF)
option(BUILD_EVENT_MONITOR_PRODUCER "Build the event monitor producer" OFF)
option(BUILD_PYTHON_DOCS "Uses sphinx to build the Python documentaion" OFF)
option(BUILD_CONSUMER_TOOLS "Build consumer tools" OFF)
......
#!/usr/bin/env bash
cd /asapo/build
cmake -DCMAKE_BUILD_TYPE="Release" -DLIBCURL_DIR=/curl -DBUILD_PYTHON_DOCS=ON ..
cmake \
-DCMAKE_BUILD_TYPE="Release" \
-DLIBCURL_DIR=/curl \
-DBUILD_PYTHON_DOCS=ON \
-DBUILD_EVENT_MONITOR_PRODUCER=ON \
..
cd consumer && make
cd ../producer && make
cd ../sphinx && make
......
#!/usr/bin/env bash
cd /asapo/build
cmake -DCMAKE_BUILD_TYPE="Release" -DLIBCURL_DIR=/curl -DBUILD_PYTHON_DOCS=ON ..
cmake \
-DCMAKE_BUILD_TYPE="Release" \
-DLIBCURL_DIR=/curl \
-DBUILD_PYTHON_DOCS=ON \
-DBUILD_EVENT_MONITOR_PRODUCER=ON \
..
cd consumer && make
cd ../producer && make
cd ../docs/sphinx && make
......
add_subdirectory(api/cpp)
add_subdirectory(api/python)
add_subdirectory(event_monitor_producer)
if(BUILD_EVENT_MONITOR_PRODUCER)
add_subdirectory(event_monitor_producer)
endif(BUILD_EVENT_MONITOR_PRODUCER)
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