mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 07:19:24 +08:00
aec505b36b
* [wxwidgets] update to 3.1.6 * Revise nanosvg * Add feature control and dependencies for sound * Add descripton for feature sound * Update versions * Update ports/wxwidgets/vcpkg.json Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com> * Fix spacing and version * Remove cmake push/pop * Bump version * Undo change in wrapper * bump version * restore newline * bump version Co-authored-by: Kai Pastor <dg0yt@darc.de> Co-authored-by: Billy Robert O'Neal <bion@microsoft.com> Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
17 lines
452 B
CMake
17 lines
452 B
CMake
cmake_minimum_required(VERSION 3.11)
|
|
project(nanosvg NONE)
|
|
|
|
set(NANOSVG_HEADERS src/nanosvg.h src/nanosvgrast.h)
|
|
add_library(nanosvg INTERFACE)
|
|
|
|
set_target_properties(nanosvg PROPERTIES PUBLIC_HEADER "${NANOSVG_HEADERS}")
|
|
|
|
install(TARGETS nanosvg
|
|
EXPORT nanosvgTargets
|
|
PUBLIC_HEADER DESTINATION include)
|
|
|
|
install(EXPORT nanosvgTargets
|
|
FILE unofficial-nanosvg-config.cmake
|
|
NAMESPACE unofficial::nanosvg::
|
|
DESTINATION share/unofficial-nanosvg)
|