-
Notifications
You must be signed in to change notification settings - Fork 36
/
CMakeLists.txt
executable file
·410 lines (334 loc) · 16.3 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
################################################################################
# (C) Copyright 2016 CEA LIST. All Rights Reserved.
# Contributor(s): Olivier BICHLER ([email protected])
#
# This software is governed by the CeCILL-C license under French law and
# abiding by the rules of distribution of free software. You can use,
# modify and/ or redistribute the software under the terms of the CeCILL-C
# license as circulated by CEA, CNRS and INRIA at the following URL
# "http://www.cecill.info".
#
# As a counterpart to the access to the source code and rights to copy,
# modify and redistribute granted by the license, users are provided only
# with a limited warranty and the software's author, the holder of the
# economic rights, and the successive licensors have only limited
# liability.
#
# The fact that you are presently reading this means that you have had
# knowledge of the CeCILL-C license and that you accept its terms.
################################################################################
cmake_minimum_required(VERSION 3.1)
macro(set_globals)
set(CMAKE_BUILD_TYPE_INIT Release)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake/Modules/")
set(CMAKE_CXX_FLAGS_COVERAGE "${CMAKE_CXX_FLAGS_DEBUG} --coverage")
set(CMAKE_EXE_LINKER_FLAGS_COVERAGE "${CMAKE_EXE_LINKER_FLAGS_DEBUG} --coverage")
set(CMAKE_SHARED_LINKER_FLAGS_COVERAGE "${CMAKE_SHARED_LINKER_FLAGS_DEBUG} --coverage")
set(CMAKE_MODULE_LINKER_FLAGS_COVERAGE "${CMAKE_MODULE_LINKER_FLAGS_DEBUG} --coverage")
endmacro()
function(set_cxx_standard_flags flags)
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5)
set(${flags} -std=c++11 PARENT_SCOPE)
else()
set(${flags} -std=c++14 PARENT_SCOPE)
endif()
else()
message(WARNING "You are using an unsupported compiler! Compilation has only been tested with GCC.")
endif()
endfunction()
function(target_link_libraries_whole_archive target linked_libs)
if(MSVC)
foreach(lib IN LISTS linked_libs ARGN)
set_property(TARGET ${target} APPEND PROPERTY LINK_FLAGS "/WHOLEARCHIVE:${lib}")
target_link_libraries(${target} PUBLIC ${lib})
endforeach()
else()
target_link_libraries(${target} PUBLIC -Wl,--whole-archive ${linked_libs} ${ARGN} -Wl,--no-whole-archive)
endif()
endfunction()
function(add_n2d2_test file_path target linked_libs)
get_filename_component(file_name ${file_path} NAME_WE)
add_executable(${file_name} EXCLUDE_FROM_ALL ${file_path})
set_target_properties(${file_name} PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/tests")
target_link_libraries_whole_archive(${file_name} ${linked_libs} ${ARGN})
add_test(NAME "${file_name}" COMMAND ${file_name} WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/tests")
add_dependencies(${target} ${file_name})
endfunction()
function(add_n2d2_executable file_path target linked_libs)
get_filename_component(file_name ${file_path} NAME_WE)
add_executable(${file_name} EXCLUDE_FROM_ALL ${file_path})
target_link_libraries_whole_archive(${file_name} ${linked_libs} ${ARGN})
add_dependencies(${target} ${file_name})
endfunction()
function(add_n2d2_doc source build_dir target deps)
find_package(Doxygen)
if(Doxygen_FOUND AND EXISTS "${CMAKE_CURRENT_LIST_DIR}/docs")
file(RELATIVE_PATH relname ${PROJECT_SOURCE_DIR} ${source})
# Find all the public headers
set(ALL_PUBLIC_HEADERS "")
foreach(dep IN LISTS deps ARGN)
get_target_property(PUBLIC_HEADER_DIRS ${dep} INTERFACE_INCLUDE_DIRECTORIES)
list(GET PUBLIC_HEADER_DIRS 0 PUBLIC_HEADER_DIR)
file(GLOB_RECURSE PUBLIC_HEADERS ${PUBLIC_HEADER_DIR}/*.hpp)
list(APPEND ALL_PUBLIC_HEADERS ${PUBLIC_HEADERS})
endforeach()
set(DOXYGEN_INPUT_DIR ${source})
set(DOXYGEN_OUTPUT_DIR ${source}/docs/doxygen)
set(DOXYGEN_INDEX_FILE ${DOXYGEN_OUTPUT_DIR}/html/index.html)
set(DOXYFILE_IN ${source}/Doxyfile.in)
set(DOXYFILE_OUT ${build_dir}/Doxyfile)
#Replace variables inside @@ with the current values
configure_file(${DOXYFILE_IN} ${DOXYFILE_OUT} @ONLY)
file(MAKE_DIRECTORY ${DOXYGEN_OUTPUT_DIR}) #Doxygen won't create this for us
file(MAKE_DIRECTORY ${DOXYGEN_OUTPUT_DIR}/html) #Prevents intermittent error
file(MAKE_DIRECTORY ${DOXYGEN_OUTPUT_DIR}/xml) #Prevents intermittent error
add_custom_command(OUTPUT ${DOXYGEN_INDEX_FILE}
DEPENDS ${ALL_PUBLIC_HEADERS}
COMMAND ${DOXYGEN_EXECUTABLE} ${DOXYFILE_OUT}
MAIN_DEPENDENCY ${DOXYFILE_OUT} ${DOXYFILE_IN}
COMMENT "Generating docs")
add_custom_target(doxygen-${relname} DEPENDS "${DOXYGEN_INDEX_FILE}")
add_dependencies(${target} doxygen-${relname})
find_package(Sphinx)
if(Sphinx_FOUND)
set(SPHINX_SOURCE ${source}/docs/)
set(SPHINX_BUILD ${source}/docs/_build/html)
set(SPHINX_INDEX_FILE ${SPHINX_BUILD}/index.html)
# Only regenerate Sphinx when:
# - Doxygen has rerun
# - Our doc files have been updated
# - The Sphinx config has been updated
add_custom_command(OUTPUT ${SPHINX_INDEX_FILE}
COMMAND
${SPHINX_EXECUTABLE} -b html
# Tell Breathe where to find the Doxygen output
-Dbreathe_projects.N2D2=${DOXYGEN_OUTPUT_DIR}/xml
${SPHINX_SOURCE} ${SPHINX_BUILD}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
DEPENDS
# Other docs files you want to track should go here (or in some variable)
${SPHINX_SOURCE}/*
${DOXYGEN_INDEX_FILE}
MAIN_DEPENDENCY ${SPHINX_SOURCE}/conf.py
COMMENT "Generating documentation with Sphinx")
add_custom_target(sphinx-${relname} DEPENDS "${SPHINX_INDEX_FILE}")
add_dependencies(${target} sphinx-${relname})
endif()
endif()
endfunction()
function(add_n2d2_pybind name source linked_libs)
# Python binding
# Requires PyBind >= 2.2, because previous versions had a bug with virtual
# inherance: https://github.com/pybind/pybind11/issues/865
find_package (Python3 COMPONENTS Interpreter Development)
message(STATUS "Using third_party/pybind11.")
add_subdirectory(${N2D2_SOURCE_DIR}/third_party/pybind11)
if (NOT EXISTS "${N2D2_SOURCE_DIR}/third_party/pybind11/CMakeLists.txt")
message(FATAL_ERROR
"Cannot find third_party/pybind11 directory that's needed to "
"build N2D2. If you use git, make sure you have cloned submodules:\n"
" git submodule update --init --recursive\n")
endif()
# find_package(Python 3.7 COMPONENTS Interpreter Development)
pybind11_add_module(${name} MODULE ${source})
message(STATUS "pybind11 include dirs: " "${pybind11_INCLUDE_DIRS}")
target_include_directories(${name} PUBLIC ${pybind11_INCLUDE_DIRS})
# target_compile_definitions(${name} PUBLIC PYBIND=1)
# target_compile_definitions(${linked_libs} PUBLIC PYBIND=1)
target_link_libraries_whole_archive(${name} ${linked_libs} ${ARGN})
endfunction()
# Must be called after find_package(CUDA) as the find_package call resets CUDA_NVCC_FLAGS
macro(set_nvcc_flags)
set(CUDA_PROPAGATE_HOST_FLAGS OFF)
cuda_select_nvcc_arch_flags(ARCH_FLAGS Auto)
set_cxx_standard_flags(flags)
list(APPEND CUDA_NVCC_FLAGS ${flags};${ARCH_FLAGS})
if (MSVC)
list(APPEND CUDA_NVCC_FLAGS -Xcompiler;-MD;)
else()
list(APPEND CUDA_NVCC_FLAGS -Xcompiler;-fPIC;)
endif()
endmacro()
set_globals()
include("${CMAKE_CURRENT_LIST_DIR}/cmake/cotire.cmake")
project(N2D2)
# n2d2_lib target
file(GLOB_RECURSE src_files "src/*.cpp")
file(GLOB_RECURSE src_files_python "src/python/*.cpp")
list(REMOVE_ITEM src_files "${CMAKE_CURRENT_LIST_DIR}/src/python/pybind_N2D2.cpp")
list(REMOVE_ITEM src_files_python "${CMAKE_CURRENT_LIST_DIR}/src/python/pybind_N2D2.cpp")
foreach(item ${src_files_python})
list(REMOVE_ITEM src_files ${item})
endforeach()
add_library(n2d2_lib STATIC ${src_files})
# It is required to set the variable N2D2_EXTRAMODULE in the additional module
# you are developing in order to compile the Python Binding of N2D2.
# Without N2D2_EXTRAMODULE, the Python binding won't compile in your module.
# ==> set(N2D2_EXTRAMODULE 1)
if(DEFINED N2D2_EXTRAMODULE)
set(src_files_python_os ${src_files_python} PARENT_SCOPE)
endif()
target_include_directories(n2d2_lib PUBLIC "include")
target_compile_definitions(n2d2_lib PUBLIC N2D2_COMPILE_PATH=\"${CMAKE_SOURCE_DIR}\")
if(MSVC)
# TODO clean-up warnings
target_compile_options(n2d2_lib PUBLIC /W3 /wd4250 /wd4512 /wd4267 /wd4244 /wd4800 /wd4297 /bigobj)
target_compile_definitions(n2d2_lib PUBLIC _CONSOLE _VISUALC_ NeedFunctionPrototypes _CRT_SECURE_NO_WARNINGS _VARIADIC_MAX=10)
else()
set_cxx_standard_flags(flags)
target_compile_options(n2d2_lib PUBLIC ${flags} -Wall -Wextra -pedantic -Wno-unknown-pragmas -fsigned-char -fPIC)
endif()
find_package(OpenCV REQUIRED)
target_link_libraries(n2d2_lib PUBLIC ${OpenCV_LIBS})
target_include_directories(n2d2_lib PUBLIC ${OpenCV_INCLUDE_DIRS})
find_package(Threads REQUIRED)
target_link_libraries(n2d2_lib PUBLIC Threads::Threads)
find_package(Gnuplot REQUIRED)
find_package(OpenMP QUIET)
if(OpenMP_FOUND)
target_compile_options(n2d2_lib PUBLIC ${OpenMP_CXX_FLAGS})
target_link_libraries(n2d2_lib PUBLIC ${OpenMP_CXX_FLAGS})
if(NOT MSVC)
# Fix for missing atomic lib
target_link_libraries(n2d2_lib PUBLIC -Wl,--as-needed -Wl,-latomic -Wl,--no-as-needed)
endif()
target_compile_definitions(n2d2_lib PUBLIC OPENMP=1)
endif()
find_package(PugiXML QUIET)
if(PUGIXML_FOUND)
target_include_directories(n2d2_lib SYSTEM PUBLIC ${PUGIXML_INCLUDE_DIR})
target_link_libraries(n2d2_lib PUBLIC ${PUGIXML_LIBRARY})
target_compile_definitions(n2d2_lib PUBLIC PUGIXML=1)
endif()
find_package(JsonCpp QUIET)
if(JsonCpp_FOUND)
target_include_directories(n2d2_lib SYSTEM PUBLIC ${JsonCpp_INCLUDE_DIR})
target_link_libraries(n2d2_lib PUBLIC ${JsonCpp_LIBRARY})
target_compile_definitions(n2d2_lib PUBLIC JSONCPP=1)
endif()
find_package(MongoDB QUIET)
if (MongoDB_FOUND)
find_package(Boost REQUIRED COMPONENTS filesystem program_options system thread)
target_link_libraries(n2d2_lib PUBLIC ${Boost_LIBRARIES})
find_package(OpenSSL REQUIRED)
target_link_libraries(n2d2_lib PUBLIC ${OPENSSL_LIBRARIES})
target_include_directories(n2d2_lib SYSTEM PUBLIC ${MongoDB_INCLUDE_DIR})
target_link_libraries(n2d2_lib PUBLIC ${MongoDB_LIBRARIES})
target_compile_definitions(n2d2_lib PUBLIC MONGODB=1)
endif()
INCLUDE(FindProtobuf)
FIND_PACKAGE(Protobuf QUIET)
if (Protobuf_FOUND)
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/third_party/onnx/onnx.proto
DESTINATION ${CMAKE_BINARY_DIR})
INCLUDE_DIRECTORIES(${PROTOBUF_INCLUDE_DIR})
PROTOBUF_GENERATE_CPP(PROTO_SRC PROTO_HEADER ${CMAKE_BINARY_DIR}/onnx.proto)
ADD_LIBRARY(onnx_proto_lib ${PROTO_HEADER} ${PROTO_SRC})
set_cxx_standard_flags(flags)
target_compile_options(onnx_proto_lib PUBLIC ${flags} -fPIC)
get_filename_component("PROTO_HEADER_DIR" ${PROTO_HEADER} DIRECTORY)
target_include_directories(n2d2_lib SYSTEM PUBLIC ${PROTO_HEADER_DIR})
target_link_libraries(n2d2_lib PUBLIC onnx_proto_lib ${PROTOBUF_LIBRARY})
target_compile_definitions(n2d2_lib PUBLIC ONNX=1)
endif()
if(MSVC)
if (EXISTS "$ENV{DIRENT_INCLUDE_DIR}")
set(CMAKE_REQUIRED_INCLUDES "${CMAKE_REQUIRED_INCLUDES} $ENV{DIRENT_INCLUDE_DIR}")
target_include_directories(n2d2_lib SYSTEM PUBLIC $ENV{DIRENT_INCLUDE_DIR})
endif()
include(CheckIncludeFile)
check_include_file(dirent.h HAVE_DIRENT_H)
if (NOT HAVE_DIRENT_H)
message(FATAL_ERROR "dirent.h required - you can download it and "
"install it from http://www.softagalleria.net/dirent.php")
endif()
endif()
set_target_properties(n2d2_lib PROPERTIES COTIRE_ADD_UNITY_BUILD FALSE)
set_target_properties(n2d2_lib PROPERTIES COTIRE_CXX_PREFIX_HEADER_INIT "${CMAKE_CURRENT_LIST_DIR}/include/Precompiled.hpp")
cotire(n2d2_lib)
# By default, CMake will try to found CUDA to compile N2D2
# except if the environment variable N2D2_NO_CUDA exists and is set
if((DEFINED ENV{N2D2_NO_CUDA}) AND ($ENV{N2D2_NO_CUDA}))
# To compile N2D2 without CUDA
message(STATUS "CUDA Module disabled")
else()
# n2d2_lib_cuda target
if(${CMAKE_VERSION} VERSION_LESS "3.9.0")
# For CMake < 3.9.0, use our own provided FindCUDA.cmake
# in order to support "CUDA_LINK_LIBRARIES_KEYWORD"
find_package(CUDA)
else()
# For CMake >= 3.9.0, use the default FindCUDA provided by CMake
# => in this case, we need to prevent find_package() to use our own.
list(REMOVE_ITEM CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake/Modules/")
find_package(CUDA)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake/Modules/")
endif()
if(CUDA_FOUND)
set(CUDA_LINK_LIBRARIES_KEYWORD PUBLIC)
find_package(CuDNN REQUIRED)
file(GLOB_RECURSE src_files_cuda "src/*.cu")
set_nvcc_flags()
cuda_include_directories("${CMAKE_CURRENT_LIST_DIR}/include/")
cuda_add_library(n2d2_lib_cuda STATIC ${src_files_cuda})
# CUDA
target_include_directories(n2d2_lib_cuda SYSTEM PUBLIC ${CUDA_INCLUDE_DIRS})
target_link_libraries(n2d2_lib_cuda PUBLIC ${CUDA_LIBRARIES})
# CuDNN
target_include_directories(n2d2_lib_cuda SYSTEM PUBLIC ${CUDNN_INCLUDE_DIRS})
target_link_libraries(n2d2_lib_cuda PUBLIC ${CUDNN_LIBRARY})
# Cublas
# Work-around due to a bug in CMake < 3.12.2
if(CUDA_VERSION VERSION_GREATER 9.1 AND CMAKE_VERSION VERSION_LESS 3.12.2)
list(REMOVE_ITEM CUDA_CUBLAS_LIBRARIES "CUDA_cublas_device_LIBRARY-NOTFOUND")
endif()
target_link_libraries(n2d2_lib_cuda PUBLIC ${CUDA_CUBLAS_LIBRARIES})
# OpenCV
find_package(OpenCV REQUIRED)
target_link_libraries(n2d2_lib_cuda PUBLIC ${OpenCV_LIBS})
# NVML
find_package(NVML)
if(NVML_FOUND)
message(STATUS "NVML Version : ${NVML_API_VERSION}")
target_include_directories(n2d2_lib_cuda SYSTEM PUBLIC ${NVML_INCLUDE_DIRS})
target_link_libraries(n2d2_lib_cuda PUBLIC ${NVML_LIBRARIES})
target_compile_definitions(n2d2_lib_cuda PUBLIC NVML=1)
else()
message(STATUS "NVML package not found")
endif()
target_compile_definitions(n2d2_lib_cuda PUBLIC CUDA=1)
target_link_libraries(n2d2_lib PUBLIC n2d2_lib_cuda)
endif()
endif()
# The CMake is used directly and not through add_subdirectory
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
# n2d2 target
add_executable(n2d2 "exec/n2d2.cpp")
target_link_libraries_whole_archive(n2d2 n2d2_lib)
# exec target
add_custom_target(exec)
file(GLOB_RECURSE src_exec "exec/*.cpp")
list(REMOVE_ITEM src_exec "${CMAKE_CURRENT_LIST_DIR}/exec/n2d2.cpp")
foreach(file ${src_exec})
add_n2d2_executable(${file} exec n2d2_lib)
endforeach()
# pybind
list(APPEND src_files_python "${CMAKE_CURRENT_LIST_DIR}/src/python/pybind_N2D2.cpp")
add_n2d2_pybind(N2D2 "${src_files_python}" n2d2_lib)
# docs target
add_custom_target(docs)
add_n2d2_doc(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_BINARY_DIR} docs n2d2_lib)
# tests target
enable_testing()
add_custom_target(tests)
add_custom_command(TARGET tests PRE_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_CURRENT_LIST_DIR}/tests/tests_data ${CMAKE_BINARY_DIR}/tests/tests_data)
file(GLOB_RECURSE src_tests "tests/*.cpp")
foreach(file ${src_tests})
add_n2d2_test(${file} tests n2d2_lib)
endforeach()
endif()