-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDependencies.cmake
70 lines (60 loc) · 1.93 KB
/
Dependencies.cmake
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
include(cmake/CPM.cmake)
# Done as a function so that updates to variables like
# CMAKE_CXX_FLAGS don't propagate out to other
# targets
function(legged_control_cpp_setup_dependencies)
# For each dependency, see if it's
# already been provided to us by a parent project
if (NOT TARGET fmtlib::fmtlib)
CPMAddPackage(
NAME fmt
GIT_TAG 9.1.0
GITHUB_REPOSITORY "fmtlib/fmt"
OPTIONS
"BUILD_SHARED_LIBS ON"
)
endif ()
if (NOT TARGET spdlog::spdlog)
CPMAddPackage(
NAME
spdlog
VERSION
1.9.2
GITHUB_REPOSITORY
"gabime/spdlog"
OPTIONS
"SPDLOG_FMT_EXTERNAL ON"
"SPDLOG_BUILD_SHARED ON"
)
endif ()
if (NOT TARGET Catch2::Catch2WithMain)
CPMAddPackage("gh:catchorg/[email protected]")
endif ()
if (NOT TARGET CLI11::CLI11)
CPMAddPackage("gh:CLIUtils/[email protected]")
endif ()
if (NOT TARGET tools::tools)
CPMAddPackage("gh:lefticus/tools#update_build_system")
endif ()
if (NOT TARGET Eigen3::Eigen)
CPMAddPackage(
NAME Eigen
VERSION 3.4.0
URL https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.tar.gz
# Eigen's CMakelists are not intended for library use
DOWNLOAD_ONLY YES
)
if (Eigen_ADDED)
add_library(Eigen3::Eigen INTERFACE IMPORTED)
target_include_directories(Eigen3::Eigen INTERFACE ${Eigen_SOURCE_DIR})
endif ()
endif ()
if (NOT TARGET nlohmann_json::nlohmann_json)
CPMAddPackage(
NAME nlohmann_json
GITHUB_REPOSITORY nlohmann/json
VERSION 3.9.1
OPTIONS
"JSON_BuildTests OFF")
endif ()
endfunction()