File tree Expand file tree Collapse file tree 3 files changed +5
-12
lines changed Expand file tree Collapse file tree 3 files changed +5
-12
lines changed Original file line number Diff line number Diff line change 1
- [submodule "oxen-logging "]
2
- path = oxen-logging
3
- url = https://github.com/oxen-io/oxen-logging.git
4
1
[submodule "libpqxx "]
5
2
path = libpqxx
6
3
url = https://github.com/jtv/libpqxx.git
Original file line number Diff line number Diff line change @@ -33,8 +33,9 @@ add_library(spns STATIC
33
33
find_package (PkgConfig REQUIRED)
34
34
35
35
pkg_check_modules(SODIUM REQUIRED IMPORTED_TARGET libsodium>=1.0.18)
36
- pkg_check_modules(OXENC REQUIRED IMPORTED_TARGET liboxenc>=1.0.4)
37
- pkg_check_modules(OXENMQ REQUIRED IMPORTED_TARGET liboxenmq>=1.2.14)
36
+ pkg_check_modules(OXENC REQUIRED IMPORTED_TARGET liboxenc>=1.4.0)
37
+ pkg_check_modules(OXENMQ REQUIRED IMPORTED_TARGET liboxenmq>=1.2.22)
38
+ pkg_check_modules(OXENLOGGING REQUIRED IMPORTED_TARGET liboxen-logging>=1.2.0)
38
39
pkg_check_modules(NLOHMANN_JSON REQUIRED IMPORTED_TARGET nlohmann_json>=3.7.0)
39
40
pkg_check_modules(SYSTEMD REQUIRED IMPORTED_TARGET libsystemd)
40
41
@@ -74,27 +75,23 @@ if(SUBMODULE_CHECK)
74
75
endfunction ()
75
76
76
77
message (STATUS "Checking submodules" )
77
- check_submodule(oxen-logging fmt spdlog)
78
78
check_submodule(libpqxx)
79
79
check_submodule(pybind11)
80
80
81
81
endif ()
82
82
endif ()
83
83
84
- set (OXEN_LOGGING_SOURCE_ROOT "${PROJECT_SOURCE_DIR} " CACHE INTERNAL "" )
85
- add_subdirectory (oxen-logging)
86
-
87
84
add_subdirectory (libpqxx EXCLUDE_FROM_ALL )
88
85
89
86
target_link_libraries (spns PRIVATE
90
87
PkgConfig::SODIUM
91
88
PkgConfig::OXENC
92
89
PkgConfig::OXENMQ
90
+ PkgConfig::OXENLOGGING
93
91
PkgConfig::NLOHMANN_JSON
94
92
PkgConfig::SYSTEMD
95
93
PUBLIC
96
- pqxx
97
- oxen::logging)
94
+ pqxx)
98
95
99
96
set_target_properties (spns PROPERTIES INTERPROCEDURAL_OPTIMIZATION ON )
100
97
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments