diff options
Diffstat (limited to 'vcpkg/ports/boost-math/portfile.cmake')
| -rw-r--r-- | vcpkg/ports/boost-math/portfile.cmake | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vcpkg/ports/boost-math/portfile.cmake b/vcpkg/ports/boost-math/portfile.cmake new file mode 100644 index 0000000..76f44cf --- /dev/null +++ b/vcpkg/ports/boost-math/portfile.cmake @@ -0,0 +1,19 @@ +# Automatically generated by scripts/boost/generate-ports.ps1 + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO boostorg/math + REF boost-${VERSION} + SHA512 6f21b7aa18f2886dab7ad9c8c47a419a703a735e36a2fa2fbc36351fb9357214a8a1a12f9eca2ab22c92b869d4fa445075febc8630aef26b5176bd0cbc370294 + HEAD_REF master + PATCHES + build-old-libs.patch + opt-random.diff +) + +set(FEATURE_OPTIONS "") +include("${CMAKE_CURRENT_LIST_DIR}/features.cmake") +boost_configure_and_install( + SOURCE_PATH "${SOURCE_PATH}" + OPTIONS ${FEATURE_OPTIONS} +) |