12 lines
210 B
CMake
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
|
|
)
|