database start + cmake policy update

This commit is contained in:
Thomas Schleicher 2024-12-16 10:34:38 +01:00
parent d0f7e54f7e
commit 2923f6f5c5
4 changed files with 69 additions and 7 deletions

View file

@ -1,4 +1,5 @@
cmake_minimum_required(VERSION 3.16)
cmake_policy(SET CMP0167 OLD)
project(short-link VERSION 1.0 LANGUAGES CXX)
@ -14,7 +15,7 @@ add_executable(Application src/main.cpp
src/request_handler.cpp
)
find_package(Boost REQUIRED COMPONENTS filesystem system)
find_package(Boost REQUIRED filesystem system)
if(Boost_FOUND)
include_directories(${Boost_INCLUDE_DIRS})