vcpkg/ports/catch2/portfile.cmake
georg-emg 2f9972005f
[catch2] updated catch2 to version 2.13.6 (#17435)
* - updated catch2 to version 2.13.6
- replaces catch2 CONTROL file with proper manifest

* vcpkg x-add-version catch2

* fixed the portfile to REALLY update catch2 to version 2.13.6

* vcpkg x-add-version catch2 --overwrite-version

* fixed the portfile AGAIN to REALLY REALLY update catch2 to version 2.13.6 this time

* vcpkg x-add-version catch2 --overwrite-version

* updated hash in portfile.cmake for catch2

* vcpkg x-add-version catch2 --overwrite-version

* Update version-string as version-semver

* Update versions/c-/catch2.json

Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
2021-05-21 01:35:18 -07:00

32 lines
1.1 KiB
CMake

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO catchorg/Catch2
REF 5c88067bd339465513af4aec606bd2292f1b594a # v2.13.6
SHA512 62ab120ef9cbbcf7320a96654bda60c766dbbcc0d9cbb2b0b36dd04e828315b627caf51e390dcea915efa266655fe0f28058b972c0d6e0e3e457c565d26e1fd3
HEAD_REF master
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
-DBUILD_TESTING=OFF
-DCATCH_BUILD_EXAMPLES=OFF
)
vcpkg_install_cmake()
file(RENAME "${CURRENT_PACKAGES_DIR}/share/Catch2" "${CURRENT_PACKAGES_DIR}/share/catch2")
file(RENAME "${CURRENT_PACKAGES_DIR}/debug/share/Catch2" "${CURRENT_PACKAGES_DIR}/debug/share/catch2")
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/Catch2)
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug" "${CURRENT_PACKAGES_DIR}/lib")
if(NOT EXISTS "${CURRENT_PACKAGES_DIR}/include/catch2/catch.hpp")
message(FATAL_ERROR "Main includes have moved. Please update the forwarder.")
endif()
file(WRITE "${CURRENT_PACKAGES_DIR}/include/catch.hpp" "#include <catch2/catch.hpp>")
file(INSTALL "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)