add fmt dependency
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Juanjo Gutiérrez 2025-03-28 17:42:47 +01:00
parent 71d6825603
commit cda002ad91
No known key found for this signature in database
GPG key ID: 2EE7726C7CA75D4E
2 changed files with 5 additions and 2 deletions

View file

@ -29,7 +29,9 @@ target_compile_definitions(hermes PRIVATE LOGGER_CLASS=${LOGGER_CLASS})
target_sources(hermes PRIVATE src/${LOGGER_CLASS}.cpp) target_sources(hermes PRIVATE src/${LOGGER_CLASS}.cpp)
# required dependency sqlite3 # required dependency sqlite3
find_library (SQLITE3_LIBRARY NAMES libsqlite3 sqlite3) find_library (SQLITE3_LIBRARY REQUIRED NAMES libsqlite3 sqlite3)
find_library (FMT_LIBRARY REQUIRED NAMES fmt)
# optional dependency libspf2 # optional dependency libspf2
find_library (SPF2_LIBRARY REQUIRED NAMES spf2 libspf2) find_library (SPF2_LIBRARY REQUIRED NAMES spf2 libspf2)
@ -93,6 +95,7 @@ target_link_libraries(hermes
${SQLITE3_LIBRARY} ${SQLITE3_LIBRARY}
${OPENSSL_LIBRARIES} ${OPENSSL_LIBRARIES}
${SPF2_LIBRARY} ${SPF2_LIBRARY}
${FMT_LIBRARY}
pthread) pthread)
install(TARGETS hermes install(TARGETS hermes

View file

@ -1,7 +1,7 @@
FROM alpine:3.21 FROM alpine:3.21
ADD . /hermes ADD . /hermes
WORKDIR /hermes WORKDIR /hermes
RUN apk add --no-cache graphviz doxygen gcc make openssl-dev libspf2-dev cmake g++ sqlite-dev gettext-dev python3 boost-dev fmt RUN apk add --no-cache graphviz doxygen gcc make openssl-dev libspf2-dev cmake g++ sqlite-dev gettext-dev python3 boost-dev fmt-dev
RUN cmake -B build RUN cmake -B build
RUN cmake --build build RUN cmake --build build
RUN mkdir /hermes-installation RUN mkdir /hermes-installation