-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCMakeLists.txt
122 lines (87 loc) · 5.84 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
cmake_minimum_required( VERSION 3.0 )
project( CppCrate )
set( CPPCRATE_VERSION_MAJOR 0 CACHE STRING "CppCrate major version number." )
set( CPPCRATE_VERSION_MINOR 1 CACHE STRING "CppCrate minor version number." )
set( CPPCRATE_LIBRARIES cppcrate )
set( CPPCRATE_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/include )
####################################################################################################
## ##
## Define CMake Options ##
## ##
####################################################################################################
macro( custom_option OPTION_NAME OPTION_TEXT OPTION_DEFAULT )
option( ${OPTION_NAME} ${OPTION_TEXT} ${OPTION_DEFAULT} )
if( DEFINED ENV{${OPTION_NAME}} )
set( ${OPTION_NAME} $ENV{${OPTION_NAME}} )
endif()
if( ${OPTION_NAME} )
add_definitions( -D${OPTION_NAME} )
endif()
message( STATUS " * ${OPTION_NAME} ${${OPTION_NAME}}" )
endmacro()
message( STATUS "CppCrate options:" )
custom_option( ENABLE_BLOB_SUPPORT "If ON, blob support will be included." ON )
custom_option( ENABLE_CPP11_SUPPORT "If ON, C++11 fetures are used." ON )
custom_option( BUILD_UNITTESTS "If ON, the unit test will be build. (Needs ENABLE_CPP11_SUPPORT=ON)" OFF )
####################################################################################################
## ##
## Set compiler flags ##
## ##
####################################################################################################
if( ENABLE_CPP11_SUPPORT )
if( CMAKE_COMPILER_IS_GNUCC )
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
endif()
else()
if( CMAKE_COMPILER_IS_GNUCC )
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++98")
endif()
endif()
####################################################################################################
## ##
## Include documentation ##
## ##
####################################################################################################
add_subdirectory( doc )
####################################################################################################
## ##
## Include curl ##
## ##
####################################################################################################
find_package( CURL )
if( NOT CURL_FOUND )
message( FATAL_ERROR "Could not find curl." )
endif()
####################################################################################################
## ##
## Include RapidJSON ##
## ##
####################################################################################################
set( RAPIDJSON_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty )
####################################################################################################
## ##
## Include C++-SHA1 ##
## ##
####################################################################################################
set( SHA1_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty )
####################################################################################################
## ##
## Include CppCrate ##
## ##
####################################################################################################
add_subdirectory( src )
####################################################################################################
## ##
## Include Google Test ##
## ##
####################################################################################################
if( BUILD_UNITTESTS AND ENABLE_CPP11_SUPPORT )
if( MSVC )
set( gtest_force_shared_crt ON )
endif()
add_subdirectory( 3rdparty/googletest )
set( GTEST_LIBRARIES gtest )
set( GTEST_INCLUDE_DIRS ${gtest_SOURCE_DIR}/include )
enable_testing()
add_subdirectory( tests )
endif()