File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ CMake build option:
7474 - `-DENABLE_SHARED_LIBS=OFF`
7575- Enable build and install static libraries. Default: Off
7676 - `-DENABLE_STATIC_LIBS=ON`
77- - Enable build the tests. Default: On. Depend on Boost test
77+ - Enable build the tests. Default: On.
7878 - `-DENABLE_TEST=OFF`
7979
8080```bash
Original file line number Diff line number Diff line change @@ -9,8 +9,7 @@ target_link_libraries(
99)
1010target_compile_definitions (event_handler_unit_test PRIVATE DOCTEST_CONFIG_DOUBLE_STRINGIFY=1)
1111target_include_directories (event_handler_unit_test PUBLIC
12- "${CMAKE_CURRENT_SOURCE_DIR} /../../include/"
13- "${Boost_INCLUDE_DIRS} " )
12+ "${CMAKE_CURRENT_SOURCE_DIR} /../../include/" )
1413
1514add_executable (inotify_unit_test main.cpp inotify_controller_test.cpp)
1615target_link_libraries (
@@ -28,8 +27,7 @@ target_link_libraries(
2827)
2928target_compile_definitions (fanotify_unit_test PRIVATE DOCTEST_CONFIG_DOUBLE_STRINGIFY=1)
3029target_include_directories (fanotify_unit_test PUBLIC
31- "${CMAKE_CURRENT_SOURCE_DIR} /../../include/"
32- "${Boost_INCLUDE_DIRS} " )
30+ "${CMAKE_CURRENT_SOURCE_DIR} /../../include/" )
3331
3432add_test (NAME event_handler_unit_test COMMAND event_handler_unit_test)
3533add_test (NAME inotify_unit_test COMMAND inotify_unit_test)
You can’t perform that action at this time.
0 commit comments