patom/CMakeLists.txt

9 lines
247 B
CMake
Raw Permalink Normal View History

2021-12-02 15:07:37 +00:00
cmake_minimum_required(VERSION 3.20.2)
project(patom CXX)
find_package(CURL REQUIRED)
find_package(nlohmann_json REQUIRED)
add_executable(${PROJECT_NAME} main.cpp)
target_link_libraries(${PROJECT_NAME} PRIVATE curl nlohmann_json::nlohmann_json)