cmake_minimum_required(VERSION 3.15)
project(app)
add_executable(app main.cpp)
target_link_libraries(app PRIVATE cpp-lib)
