mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 10:01:38 +08:00
0c7c52d5c8
* add vowpalwabbit port * update baseline * update version * update baseline after version change * mark arm64-windows as fail * Update vowpalwabbit.json * Update ci.baseline.txt * Update ci.baseline.txt * update supports field in manifest * run x-add-version * Update ci.baseline.txt * Add usage and nitpick quotes. * rename port to vowpal-wabbit and add patch to remove bin targets * update versions, rename port Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com> Co-authored-by: Billy O'Neal <bion@microsoft.com>
31 lines
1.0 KiB
CMake
31 lines
1.0 KiB
CMake
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO VowpalWabbit/vowpal_wabbit
|
|
REF 9496a6dd5610910a495ca004a93c8ab6913293e4
|
|
SHA512 df4da3f3ab763dbd113b0ace0552d676ec905a6ff0d942d9fc1828e36fb8440d1b75a61c1ea6de09879e0f52547366936d02a77dba2bac89503a075da12414db
|
|
HEAD_REF master
|
|
PATCHES cmake_remove_bin_targets.patch
|
|
)
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
-DVW_INSTALL=ON
|
|
-DRAPIDJSON_SYS_DEP=ON
|
|
-DFMT_SYS_DEP=ON
|
|
-DSPDLOG_SYS_DEP=ON
|
|
-DVW_BOOST_MATH_SYS_DEP=ON
|
|
-DVW_ZLIB_SYS_DEP=ON
|
|
-DVW_BUILD_VW_C_WRAPPER=OFF
|
|
-DBUILD_TESTING=OFF
|
|
)
|
|
vcpkg_cmake_install()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
|
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/VowpalWabbit)
|