mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 13:31:27 +08:00
dc9761f7de
https://github.com/cbeck88/visit_struct The motivation for this port is that we do not have to lock ourselves with Boost.Fusion, or Boost.Hana, and can benefit from some downstream projects such as Configuru at the same time.
18 lines
398 B
CMake
18 lines
398 B
CMake
cmake_minimum_required(VERSION 3.11)
|
|
project(visit_struct)
|
|
|
|
add_library(visit_struct INTERFACE)
|
|
|
|
install(TARGETS visit_struct
|
|
EXPORT visit_struct-targets
|
|
INCLUDES DESTINATION include)
|
|
|
|
install(EXPORT visit_struct-targets
|
|
FILE visit_struct-config.cmake
|
|
NAMESPACE visit_struct::
|
|
DESTINATION share/visit_struct)
|
|
|
|
install(DIRECTORY
|
|
include/visit_struct
|
|
DESTINATION include)
|