This commit is contained in:
parent
71d6825603
commit
cda002ad91
2 changed files with 5 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue