-
Notifications
You must be signed in to change notification settings - Fork 24
/
CMakeLists.txt
32 lines (25 loc) · 940 Bytes
/
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
cmake_minimum_required(VERSION 2.6)
project(CppQuickCheck)
set(CMAKE_CXX_FLAGS "-O3 -g -Wall -std=c++11")
find_package(Boost REQUIRED)
include_directories(${Boost_INCLUDE_DIR})
include_directories("${PROJECT_SOURCE_DIR}/include")
add_subdirectory(examples)
add_library(cppqc SHARED src/Arbitrary.cpp)
install(DIRECTORY "include/" DESTINATION "include"
PATTERN ".*" EXCLUDE)
install(TARGETS cppqc DESTINATION "lib")
# "catch" based unit tests
enable_testing()
add_executable(
all-catch-tests
test/catch-main.cpp
test/shrink-explosion-protection.cpp
test/compact-check-tests.cpp
test/functional-tests.cpp)
target_link_libraries(all-catch-tests cppqc)
add_test(all-catch-tests all-catch-tests)
# workaround to force cmake to build test executable before running the test
# (source: http://stackoverflow.com/a/736838/783510)
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND}
DEPENDS all-catch-tests)