mirror of
https://github.com/davidallendj/gdpm.git
synced 2025-12-19 19:17:01 -07:00
Removed Poco as dependencies
This commit is contained in:
parent
d2a77fe28f
commit
4b0ded6b5b
1 changed files with 7 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ find_package(RapidJSON CONFIG REQUIRED)
|
||||||
find_package(fmt CONFIG REQUIRED)
|
find_package(fmt CONFIG REQUIRED)
|
||||||
find_package(Catch2 CONFIG REQUIRED)
|
find_package(Catch2 CONFIG REQUIRED)
|
||||||
find_package(cxxopts CONFIG REQUIRED)
|
find_package(cxxopts CONFIG REQUIRED)
|
||||||
find_package(Poco CONFIG REQUIRED COMPONENTS Net JSON Util)
|
#find_package(Poco CONFIG REQUIRED COMPONENTS Net JSON Util)
|
||||||
find_package(libzip CONFIG REQUIRED)
|
find_package(libzip CONFIG REQUIRED)
|
||||||
find_package(SQLiteCpp CONFIG REQUIRED)
|
find_package(SQLiteCpp CONFIG REQUIRED)
|
||||||
|
|
||||||
|
|
@ -36,6 +36,9 @@ set(INCLUDE_DIRS
|
||||||
"include"
|
"include"
|
||||||
"/usr/include/doctest"
|
"/usr/include/doctest"
|
||||||
${RAPIDJSON_INCLUDE_DIRS}
|
${RAPIDJSON_INCLUDE_DIRS}
|
||||||
|
# Poco::Net
|
||||||
|
# Poco::JSON
|
||||||
|
#Poco::Util
|
||||||
)
|
)
|
||||||
set(LINK_LIBS
|
set(LINK_LIBS
|
||||||
fmt::fmt
|
fmt::fmt
|
||||||
|
|
@ -43,6 +46,9 @@ set(LINK_LIBS
|
||||||
Catch2::Catch2
|
Catch2::Catch2
|
||||||
cxxopts::cxxopts
|
cxxopts::cxxopts
|
||||||
SQLiteCpp
|
SQLiteCpp
|
||||||
|
#Poco::Net
|
||||||
|
#Poco::JSON
|
||||||
|
#Poco::Util
|
||||||
-lcurlpp
|
-lcurlpp
|
||||||
-lzip
|
-lzip
|
||||||
-lsqlite3
|
-lsqlite3
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue