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