Files
Takatoshi Kondo 12dd72645a Add old style find boost applying option to cmake.
When cmake has -D MSGPACK_BOOST_USE_OLD_CMAKE=ON option, cmake use old style find boost.
2026-01-12 15:05:17 +09:00

11 lines
249 B
CMake

cmake_minimum_required(VERSION 3.5...4.0)
project(test-install LANGUAGES CXX)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
find_package(msgpack-cxx REQUIRED)
add_executable(test-install simple.cpp)
target_link_libraries(test-install PRIVATE msgpack-cxx)