diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-02-14 11:47:07 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-02-14 11:47:07 -0500 |
commit | 952de22b54c85aac5eef77d9aafe6587ad555fce (patch) | |
tree | 131eb31edab76a066d665d99fee40f83430be5b1 /src/lib/entrypoint/CMakeLists.txt | |
parent | 1762aa42cd86e0bb2631631488bf8b2474378f83 (diff) | |
download | stasis-952de22b54c85aac5eef77d9aafe6587ad555fce.tar.gz |
Add missing entrypoint directory
Diffstat (limited to 'src/lib/entrypoint/CMakeLists.txt')
-rw-r--r-- | src/lib/entrypoint/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib/entrypoint/CMakeLists.txt b/src/lib/entrypoint/CMakeLists.txt new file mode 100644 index 0000000..2adb7e5 --- /dev/null +++ b/src/lib/entrypoint/CMakeLists.txt @@ -0,0 +1,16 @@ +add_library(stasis_entrypoint STATIC + stasis_entrypoint.c + args.c + entrypoint_callbacks.c + system_requirements.c + tpl.c +) +target_link_libraries(stasis_entrypoint PRIVATE + stasis_delivery +) +target_include_directories(stasis_entrypoint PRIVATE + ${core_INCLUDE} + ${delivery_INCLUDE} + ${CMAKE_CURRENT_SOURCE_DIR}/include +) +target_link_libraries(stasis_entrypoint PUBLIC LibXml2::LibXml2) |