-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
37 lines (29 loc) · 1.2 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
36
37
# running script file to install dependencies
# install(CODE "execute_process(COMMAND install_dependencies.sh)")
cmake_minimum_required(VERSION 3.2.1)
project (human_detector_and_tracker)
# Add project cmake modules to path.
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/cmake ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
# Add opencv to the required libraries
FIND_PACKAGE(OpenCV REQUIRED)
INCLUDE_DIRECTORIES( ${OpenCV_INCLUDE_DIRS})
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# We probably don't want this to run on every build.
option(COVERAGE "Generate Coverage Data" OFF)
if (COVERAGE)
include(CodeCoverage)
set(LCOV_REMOVE_EXTRA "'*vendor/*'")
setup_target_for_coverage(code_coverage test/cpp-test coverage)
set(COVERAGE_SRCS app/main.cpp include/lib.hpp)
SET(CMAKE_CXX_FLAGS "-g -O0 -fprofile-arcs -ftest-coverage")
SET(CMAKE_C_FLAGS "-g -O0 -fprofile-arcs -ftest-coverage")
SET(CMAKE_EXE_LINKER_FLAGS "-fprofile-arcs -ftest-coverage")
else()
set(CMAKE_CXX_FLAGS "-Wall -Wextra -Wpedantic -g")
endif()
include(CMakeToolsHelpers OPTIONAL)
set(CMAKE_CXX_STANDARD 14)
add_subdirectory(app)
add_subdirectory(src)
add_subdirectory(test)
add_subdirectory(vendor/googletest/googletest)