mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 02:29:00 +08:00
93c0ba0e2c
* [visit-struct] Update to 1.1.0 and prefix targets with unofficial * [visit-struct] Update versions
18 lines
454 B
CMake
18 lines
454 B
CMake
cmake_minimum_required(VERSION 3.11)
|
|
project(visit_struct)
|
|
|
|
add_library(visit_struct INTERFACE)
|
|
|
|
install(TARGETS visit_struct
|
|
EXPORT unofficial-visit_struct-targets
|
|
INCLUDES DESTINATION include)
|
|
|
|
install(EXPORT unofficial-visit_struct-targets
|
|
FILE unofficial-visit_struct-config.cmake
|
|
NAMESPACE unofficial::visit_struct::
|
|
DESTINATION share/unofficial-visit_struct)
|
|
|
|
install(DIRECTORY
|
|
include/visit_struct
|
|
DESTINATION include)
|