-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
165 lines (142 loc) · 5.58 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
cmake_minimum_required(VERSION 3.14)
project(reticula LANGUAGES CXX VERSION 0.1)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED True)
get_directory_property(is_subproject PARENT_DIRECTORY)
if(NOT is_subproject)
set(is_standalone YES)
else()
set(is_standalone NO)
endif()
include(GNUInstallDirs)
include(FetchContent)
FetchContent_Declare(
hyperloglog
GIT_REPOSITORY https://github.com/arashbm/hyperloglog.git
GIT_TAG v1.0.0)
FetchContent_Declare(
indexed_set
GIT_REPOSITORY https://github.com/arashbm/indexed_set.git
GIT_TAG v1.0.0)
FetchContent_Declare(
disjoint_set
GIT_REPOSITORY https://github.com/arashbm/disjoint_set.git
GIT_TAG v1.0.0)
FetchContent_Declare(
csvparser
URL https://raw.githubusercontent.com/vincentlaucsb/csv-parser/refs/tags/2.3.0/single_include/csv.hpp
URL_HASH MD5=c7f7832d8f52039ead7cec25cb30ab73
DOWNLOAD_NO_EXTRACT YES)
FetchContent_MakeAvailable(disjoint_set hyperloglog indexed_set csvparser)
add_library(csv INTERFACE)
target_include_directories(csv
SYSTEM INTERFACE
$<BUILD_INTERFACE:${csvparser_SOURCE_DIR}>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>)
add_library(${PROJECT_NAME} INTERFACE)
target_include_directories(
${PROJECT_NAME}
INTERFACE
$<BUILD_INTERFACE:${${PROJECT_NAME}_SOURCE_DIR}>/include/
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>)
target_link_libraries(${PROJECT_NAME} INTERFACE
disjoint_set hyperloglog indexed_set csv)
if (is_standalone)
FetchContent_Declare(
Catch2
GIT_REPOSITORY https://github.com/catchorg/Catch2.git
GIT_TAG v3.7.1)
FetchContent_MakeAvailable(Catch2)
list(APPEND CMAKE_MODULE_PATH ${catch2_SOURCE_DIR}/extras)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(TEST_FILES
src/test/reticula/stats.cpp
src/test/reticula/utils.cpp
src/test/reticula/intervals.cpp
src/test/reticula/temporal_adjacency.cpp
src/test/reticula/operations.cpp
src/test/reticula/algorithms.cpp
src/test/reticula/temporal_algorithms.cpp
src/test/reticula/compile.cpp
src/test/reticula/edge_tests.cpp
src/test/reticula/generators.cpp
src/test/reticula/implicit_event_graphs.cpp
src/test/reticula/implicit_event_graph_components.cpp
src/test/reticula/networks.cpp
src/test/reticula/io.cpp
src/test/reticula/random_networks.cpp
src/test/reticula/distributions.cpp
src/test/reticula/components.cpp
src/test/reticula/temporal_clusters.cpp
src/test/reticula/microcanonical_reference_models.cpp)
add_executable(${PROJECT_NAME}_tests EXCLUDE_FROM_ALL ${TEST_FILES})
target_link_libraries(${PROJECT_NAME}_tests
PRIVATE ${PROJECT_NAME} Catch2::Catch2WithMain)
if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
target_compile_options(${PROJECT_NAME}_tests PRIVATE
/bigobj
/W4 /permissive- /w14242 /w14254 /w14263 /w14265 /w14287 /we4289 /w14296
/w14311 /w14545 /w14546 /w14547 /w14549 /w14555 /w14619 /w14640 /w14826
/w14905 /w14906 /w14928)
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
target_compile_options(${PROJECT_NAME}_tests PRIVATE
-g -fsanitize=address,undefined
-Werror -Wall -Wextra -Wconversion -Wsign-conversion -Wnull-dereference
-Wnon-virtual-dtor -Wold-style-cast -Wcast-align -Wunused
-Woverloaded-virtual -Wpedantic -Wimplicit-fallthrough
-Wmisleading-indentation
-Wno-deprecated-declarations) # std::tmpnam in tests/io.cpp
target_link_options(${PROJECT_NAME}_tests PRIVATE
-fsanitize=address,undefined)
else() # GCC
target_compile_options(${PROJECT_NAME}_tests PRIVATE
-g -fsanitize=address,undefined
-Werror -Wall -Wextra -Wconversion -Wsign-conversion -Wnull-dereference
-Wnon-virtual-dtor -Wold-style-cast -Wcast-align -Wunused
-Woverloaded-virtual -Wpedantic -Wimplicit-fallthrough
-Wmisleading-indentation -Wduplicated-cond -Wduplicated-branches
-Wlogical-op -Wuseless-cast)
target_link_options(${PROJECT_NAME}_tests PRIVATE
-fsanitize=address,undefined)
endif()
include(CTest)
include(Catch)
catch_discover_tests(${PROJECT_NAME}_tests EXTRA_ARGS --skip-benchmarks)
add_executable(${PROJECT_NAME}_benchmarks EXCLUDE_FROM_ALL ${TEST_FILES})
target_link_libraries(${PROJECT_NAME}_benchmarks
PRIVATE ${PROJECT_NAME} Catch2::Catch2WithMain)
if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
target_compile_options(${PROJECT_NAME}_benchmarks PRIVATE /bigobj)
endif()
endif()
install(
TARGETS ${PROJECT_NAME} csv
EXPORT ${PROJECT_NAME}_Targets
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
include(CMakePackageConfigHelpers)
write_basic_package_version_file(
"${PROJECT_NAME}-config-version.cmake"
VERSION ${PROJECT_VERSION}
COMPATIBILITY SameMajorVersion)
if(NOT INCLUDE_INSTALL_DIR)
set(INCLUDE_INSTALL_DIR include/)
endif()
configure_package_config_file(
"${PROJECT_SOURCE_DIR}/cmake/${PROJECT_NAME}-config.cmake.in"
"${PROJECT_BINARY_DIR}/${PROJECT_NAME}-config.cmake"
INSTALL_DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PROJECT_NAME}/cmake
PATH_VARS INCLUDE_INSTALL_DIR)
install(
EXPORT ${PROJECT_NAME}_Targets
FILE ${PROJECT_NAME}Targets.cmake
NAMESPACE ${PROJECT_NAME}::
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PROJECT_NAME}/cmake)
install(
FILES "${PROJECT_BINARY_DIR}/${PROJECT_NAME}-config.cmake"
"${PROJECT_BINARY_DIR}/${PROJECT_NAME}-config-version.cmake"
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PROJECT_NAME}/cmake)
install(
DIRECTORY ${PROJECT_SOURCE_DIR}/include/
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME})