userver: samples/postgres_service/CMakeLists.txt
Loading...
Searching...
No Matches
samples/postgres_service/CMakeLists.txt
cmake_minimum_required(VERSION 3.14)
project(userver-samples-postgres_service CXX)
find_package(userver COMPONENTS postgresql REQUIRED)
add_executable(${PROJECT_NAME} "postgres_service.cpp")
target_link_libraries(${PROJECT_NAME} userver::postgresql)
userver_testsuite_add_simple()