mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 03:41:48 +08:00
250e35a961
* Improved infoware and portfile port * Add a note for why we do this. * Add vcpkg_fail_port_install call requested by @PhoebeHui Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
39 lines
1.1 KiB
CMake
39 lines
1.1 KiB
CMake
vcpkg_fail_port_install(ON_ARCH "arm" ON_TARGET "uwp")
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO ThePhD/infoware
|
|
REF v0.5.3
|
|
SHA512 217bb9332214d823445e19f2c465199536e89a36faccea8cb72f8dd41a177e1739969d131ad25d1878e688a3a6cc1290c2125ef9d2205ad4fd334b24b27d491a
|
|
HEAD_REF master
|
|
)
|
|
|
|
vcpkg_check_features(
|
|
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
x11 INFOWARE_USE_X11
|
|
d3d INFOWARE_USE_D3D
|
|
opencl INFOWARE_USE_OPENCL
|
|
opengl INFOWARE_USE_OPENGL
|
|
)
|
|
|
|
# git must be injected, because vcpkg isolates the build
|
|
# from the environment entirely to have reproducible builds
|
|
vcpkg_find_acquire_program(GIT)
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
${FEATURE_OPTIONS}
|
|
-DINFOWARE_EXAMPLES=OFF
|
|
-DINFOWARE_TESTS=OFF
|
|
-DGIT_EXECUTABLE=${GIT}
|
|
-DGIT_FOUND=true
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|