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)
|
||||
|
||||
# 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
|
||||
find_library (SPF2_LIBRARY REQUIRED NAMES spf2 libspf2)
|
||||
|
@ -93,6 +95,7 @@ target_link_libraries(hermes
|
|||
${SQLITE3_LIBRARY}
|
||||
${OPENSSL_LIBRARIES}
|
||||
${SPF2_LIBRARY}
|
||||
${FMT_LIBRARY}
|
||||
pthread)
|
||||
|
||||
install(TARGETS hermes
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
FROM alpine:3.21
|
||||
ADD . /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 --build build
|
||||
RUN mkdir /hermes-installation
|
||||
|
|
Loading…
Add table
Reference in a new issue