mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-10 09:18:36 +08:00
c482408411
* [llvm] update to 12.0.0, enable zlib and libxml2 * [llvm] disable libxml2 by default, arm64-windows should be supported * [llvm] try to fix build with ffi on Windows #17663 * [llvm] re-enable libxml2 * [llvm] fix formatting * [llvm] overwrite version * [mesa] update to v21.1.0 * [llvm] update ci.baseline * [halide] update to the latest master commit * [llvm] disable libxml2 port until complete PR #15390 * update versions * [llvm] fix disabling of external libraries * update version * update ci.baseline * update ci.baseline * fix typo * [llvm] fix libxml2 (depends on #17945) * revert "[halide] update to the latest master commit" * update versions * [halide] fix zlib dependency for tools * update versions * [halide] update to official release v12.0.0 * update versions * [halide] update to v12.0.1 * update version * [mesa] remove llvm from defaults * update version * update ci.baseline * [mesa] update to v21.1.2 and fix build with LLVM on Windows * [llvm] allow to build libunwind project on Windows * update versions * [mesa] update ci.baseline.txt to disable x64-windows-static-md, may be fixed in the PR #18495
72 lines
2.2 KiB
CMake
72 lines
2.2 KiB
CMake
vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY)
|
||
|
||
# Halide distributes some loadable modules that belong in lib on all platforms.
|
||
# CMake defaults module DLLs into the lib folder, which is incompatible with
|
||
# vcpkg’s current policy. This sidesteps that issue, a bit bluntly.
|
||
set(VCPKG_POLICY_EMPTY_PACKAGE enabled)
|
||
|
||
vcpkg_from_github(
|
||
OUT_SOURCE_PATH SOURCE_PATH
|
||
REPO halide/Halide
|
||
REF 5dabcaa9effca1067f907f6c8ea212f3d2b1d99a # v12.0.1
|
||
SHA512 5ab44703850885561337e23d8b538a5adfe1611e24e8daa4a1313756b4f9dfeb54e89bf8400d46a3340c00234402681b4f44ba3ed5322027fd6cb5dfbd525acd
|
||
HEAD_REF release/12.x
|
||
)
|
||
|
||
vcpkg_check_features(
|
||
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||
FEATURES
|
||
target-aarch64 TARGET_AARCH64
|
||
target-amdgpu TARGET_AMDGPU
|
||
target-arm TARGET_ARM
|
||
target-d3d12compute TARGET_D3D12COMPUTE
|
||
target-hexagon TARGET_HEXAGON
|
||
target-metal TARGET_METAL
|
||
target-mips TARGET_MIPS
|
||
target-nvptx TARGET_NVPTX
|
||
target-opencl TARGET_OPENCL
|
||
target-opengl TARGET_OPENGL
|
||
target-powerpc TARGET_POWERPC
|
||
target-riscv TARGET_RISCV
|
||
target-x86 TARGET_X86
|
||
)
|
||
|
||
vcpkg_configure_cmake(
|
||
SOURCE_PATH ${SOURCE_PATH}
|
||
PREFER_NINJA
|
||
OPTIONS ${FEATURE_OPTIONS}
|
||
-DWITH_DOCS=NO
|
||
-DWITH_PYTHON_BINDINGS=NO
|
||
-DWITH_TESTS=NO
|
||
-DWITH_TUTORIALS=NO
|
||
-DWITH_UTILS=NO
|
||
-DCMAKE_INSTALL_LIBDIR=bin
|
||
-DCMAKE_INSTALL_DATADIR=share/${PORT}
|
||
-DHALIDE_INSTALL_CMAKEDIR=share/${PORT}
|
||
)
|
||
|
||
vcpkg_install_cmake(ADD_BIN_TO_PATH)
|
||
|
||
vcpkg_copy_tools(
|
||
TOOL_NAMES
|
||
featurization_to_sample
|
||
get_host_target
|
||
retrain_cost_model
|
||
weightsdir_to_weightsfile
|
||
AUTO_CLEAN
|
||
)
|
||
|
||
vcpkg_copy_pdbs()
|
||
|
||
vcpkg_fixup_cmake_targets()
|
||
|
||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/share/${PORT}/tutorial)
|
||
|
||
file(GLOB readmes "${CURRENT_PACKAGES_DIR}/share/${PORT}/*.md")
|
||
file(REMOVE ${readmes})
|
||
|
||
configure_file(${SOURCE_PATH}/LICENSE.txt ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY)
|
||
configure_file(${CMAKE_CURRENT_LIST_DIR}/usage ${CURRENT_PACKAGES_DIR}/share/${PORT}/usage COPYONLY)
|