1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

cmake: add missing fmt include

This commit is contained in:
Steffen Vogel 2019-09-03 22:58:56 +02:00
parent 1f85a811fc
commit 6430839645
2 changed files with 2 additions and 0 deletions

View file

@ -57,6 +57,7 @@ find_package(OpenSSL 1.0.0 REQUIRED)
find_package(CURL 7.29 REQUIRED)
find_package(Criterion)
find_package(spdlog REQUIRED)
find_package(fmt REQUIRED)
pkg_check_modules(JANSSON IMPORTED_TARGET REQUIRED jansson>=2.7)
pkg_check_modules(LIBCONFIG IMPORTED_TARGET libconfig>=1.4.9)

View file

@ -74,6 +74,7 @@ target_link_libraries(villas-common PUBLIC
${CURL_LIBRARIES}
${CMAKE_DL_LIBS}
spdlog::spdlog
fmt::fmt
stdc++
)