gadm-ts/cpp/packages/postgres/CMakeLists.txt
2026-03-23 15:32:00 +01:00

12 lines
210 B
CMake

add_library(postgres STATIC
src/postgres.cpp
)
target_include_directories(postgres
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include
)
target_link_libraries(postgres
PUBLIC logger http json
)