-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
73 lines (59 loc) · 1.74 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
cmake_minimum_required(VERSION 3.2)
if("$ENV{TRAVIS_BUILD_NUMBER}" STREQUAL "")
project(helloworld VERSION 0.0.1)
else()
project(helloworld VERSION 0.0.$ENV{TRAVIS_BUILD_NUMBER})
endif()
find_package(Boost COMPONENTS unit_test_framework REQUIRED)
configure_file(version.h.in version.h)
add_executable(helloworld_cli main.cpp)
add_library(helloworld lib.cpp)
add_executable(test_version test_version.cpp)
set_target_properties(helloworld_cli helloworld test_version PROPERTIES
CXX_STANDARD 14
CXX_STANDARD_REQUIRED ON
)
target_include_directories(helloworld
PRIVATE "${CMAKE_BINARY_DIR}"
)
set_target_properties(test_version PROPERTIES
COMPILE_DEFINITIONS BOOST_TEST_DYN_LINK
INCLUDE_DIRECTORIES ${Boost_INCLUDE_DIR}
)
target_link_libraries(helloworld_cli PRIVATE
helloworld
)
target_link_libraries(test_version
${Boost_LIBRARIES}
helloworld
)
if (MSVC)
target_compile_options(helloworld_cli PRIVATE
/W4
)
target_compile_options(helloworld PRIVATE
/W4
)
target_compile_options(test_version PRIVATE
/W4
)
else ()
target_compile_options(helloworld_cli PRIVATE
-Wall -Wextra -pedantic -Werror
)
target_compile_options(helloworld PRIVATE
-Wall -Wextra -pedantic -Werror
)
target_compile_options(test_version PRIVATE
-Wall -Wextra -pedantic -Werror
)
endif()
install(TARGETS helloworld_cli RUNTIME DESTINATION bin)
set(CPACK_GENERATOR DEB)
set(CPACK_PACKAGE_VERSION_MAJOR "${PROJECT_VERSION_MAJOR}")
set(CPACK_PACKAGE_VERSION_MINOR "${PROJECT_VERSION_MINOR}")
set(CPACK_PACKAGE_VERSION_PATCH "${PROJECT_VERSION_PATCH}")
set(CPACK_PACKAGE_CONTACT example@example.com)
include(CPack)
enable_testing()
add_test(test_version test_version)