mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 14:59:05 +08:00
4c826df5e5
[As suggested by Dd0yt](https://github.com/microsoft/vcpkg/pull/37997#discussion_r1554483645), this PR disable the OVERRIDE_CXX_FLAGS option instead of patching it. - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [ ] ~~The "supports" clause reflects platforms that may be fixed by this new version.~~ - [ ] ~~Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file.~~ - [ ] ~~Any patches that are no longer applied are deleted from the port's directory.~~ - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file.
48 lines
1.7 KiB
CMake
48 lines
1.7 KiB
CMake
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO jrouwe/JoltPhysics
|
|
REF "v${VERSION}"
|
|
SHA512 802f6e1a50270c7348fd3740e0cd3f6e9c05d6f1ba52e1c2c890172897a33f34761165f6eabc4d6f36d6d5055017e9e9bd06b165239269634299f0674c0aaa26
|
|
HEAD_REF master
|
|
PATCHES
|
|
fix-export.diff
|
|
)
|
|
|
|
# Need to provide this library a config
|
|
# The fix-export.diff should install this
|
|
file(COPY "${CMAKE_CURRENT_LIST_DIR}/unofficial-joltphysics-config.cmake" DESTINATION "${SOURCE_PATH}/Build")
|
|
|
|
string(COMPARE EQUAL "${VCPKG_CRT_LINKAGE}" "static" USE_STATIC_CRT)
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}/Build"
|
|
OPTIONS
|
|
-DTARGET_UNIT_TESTS=OFF
|
|
-DTARGET_HELLO_WORLD=OFF
|
|
-DTARGET_PERFORMANCE_TEST=OFF
|
|
-DTARGET_SAMPLES=OFF
|
|
-DTARGET_VIEWER=OFF
|
|
-DCROSS_PLATFORM_DETERMINISTIC=OFF
|
|
-DINTERPROCEDURAL_OPTIMIZATION=OFF
|
|
-DUSE_STATIC_MSVC_RUNTIME_LIBRARY=${USE_STATIC_CRT}
|
|
-DENABLE_ALL_WARNINGS=OFF
|
|
-DOVERRIDE_CXX_FLAGS=OFF
|
|
OPTIONS_RELEASE
|
|
-DGENERATE_DEBUG_SYMBOLS=OFF
|
|
-DDEBUG_RENDERER_IN_DEBUG_AND_RELEASE=OFF
|
|
-DPROFILER_IN_DEBUG_AND_RELEASE=OFF
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
vcpkg_copy_pdbs()
|
|
vcpkg_fixup_pkgconfig()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH share/unofficial-${PORT} PACKAGE_NAME unofficial-${PORT})
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|