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