mirror of
https://github.com/Neargye/magic_enum.git
synced 2026-01-10 23:44:29 +00:00
9 lines
310 B
CMake
9 lines
310 B
CMake
cmake_minimum_required(VERSION 3.8)
|
|
project(test_package CXX)
|
|
|
|
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
|
|
conan_basic_setup(TARGETS)
|
|
|
|
add_executable(test_package test_package.cpp)
|
|
target_link_libraries(test_package PRIVATE CONAN_PKG::magic_enum)
|
|
target_compile_features(test_package PRIVATE cxx_std_17)
|