Skip to content

Commit 275c26a

Browse files
committed
Remove last boost bits
1 parent 1cc0031 commit 275c26a

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

test/unit/CMakeLists.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ target_link_libraries(
99
)
1010
target_compile_definitions(event_handler_unit_test PRIVATE DOCTEST_CONFIG_DOUBLE_STRINGIFY=1)
1111
target_include_directories(event_handler_unit_test PUBLIC
12-
"${CMAKE_CURRENT_SOURCE_DIR}/../../include/"
13-
"${Boost_INCLUDE_DIRS}")
12+
"${CMAKE_CURRENT_SOURCE_DIR}/../../include/")
1413

1514
add_executable(inotify_unit_test main.cpp inotify_controller_test.cpp)
1615
target_link_libraries(
@@ -28,8 +27,7 @@ target_link_libraries(
2827
)
2928
target_compile_definitions(fanotify_unit_test PRIVATE DOCTEST_CONFIG_DOUBLE_STRINGIFY=1)
3029
target_include_directories(fanotify_unit_test PUBLIC
31-
"${CMAKE_CURRENT_SOURCE_DIR}/../../include/"
32-
"${Boost_INCLUDE_DIRS}")
30+
"${CMAKE_CURRENT_SOURCE_DIR}/../../include/")
3331

3432
add_test(NAME event_handler_unit_test COMMAND event_handler_unit_test)
3533
add_test(NAME inotify_unit_test COMMAND inotify_unit_test)

0 commit comments

Comments
 (0)