mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 22:29:08 +08:00
80cf1e4b19
* [indicators] Add new port * [indicators] Update patch * [indicators] Install LICENSE.termcolor * [indicators] Update to 2019-12-15 * [indicators] Update to 2019-12-17 * [indicators] Update to 1.5
28 lines
887 B
CMake
28 lines
887 B
CMake
# header-only library
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO p-ranav/indicators
|
|
REF e697a43fec7ae2198275022cea071236fcc7a52f
|
|
SHA512 7b06816e6e3fb78ade46906c51aec5dc8c3dae6d826871914c36373d0f55daf3839ba35630f74be11eec18766ad4084131b3c8fa411f371f253c71239e6861ea
|
|
HEAD_REF master
|
|
)
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
-DINDICA_BUILD_TESTS=OFF
|
|
-DSAMPLES=OFF
|
|
-DDEMO=OFF
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/indica TARGET_PATH share/indica)
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug ${CURRENT_PACKAGES_DIR}/lib)
|
|
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE.termcolor DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
|