forked from berkus/dir_monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
35 lines (29 loc) · 1.05 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#
# Header-only library
# minimum 3.1 for target_compile_features: https://cmake.org/cmake/help/v3.1/command/target_compile_features.html
# minimum 3.0 for target_include_directories: https://cmake.org/cmake/help/v3.0/command/target_include_directories.html
cmake_minimum_required(VERSION 3.1)
set_property(GLOBAL PROPERTY USE_FOLDERS ON) # Use the FOLDER target property to organize targets into folders
if (BUILD_TESTING)
include(Dart)
endif()
# First, searching for dependencies
set (BOOST_COMPONENTS
system
date_time
program_options
thread
filesystem)
if (BUILD_TESTING)
list(APPEND BOOST_COMPONENTS unit_test_framework)
endif (BUILD_TESTING)
find_package(Boost COMPONENTS ${BOOST_COMPONENTS} REQUIRED)
# Then, library itself
add_library(dir_monitor INTERFACE)
target_compile_features(dir_monitor INTERFACE cxx_lambdas cxx_auto_type)
target_include_directories(dir_monitor INTERFACE include)
target_include_directories(dir_monitor INTERFACE ${Boost_INCLUDE_DIRS})
# Test applications
if (BUILD_TESTING)
add_subdirectory(tests)
endif (BUILD_TESTING)