cmake_minimum_required(VERSION 3.21)

project(icey_conan_test LANGUAGES CXX)

set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)

find_package(icey REQUIRED COMPONENTS base net http pluga)

add_executable(icey_conan_test src/example.cpp)
target_link_libraries(icey_conan_test PRIVATE icey::base icey::net icey::http icey::pluga)
