vcpkg/ports/oatpp-openssl/portfile.cmake
Michael Heyman 2b4ff3419f
[oatpp-openssl] new port (#19265)
* [oatpp-openssl] new port

* [oatpp-openssl] uses version-semver

* [oatpp-openssl] uses version-semver

* [oatpp-version] has paramters with arguments surrounded by quotes

* [oatpp-openssl] vcpkg x-add-version oatpp-openssl --overwrite-version

* [oatpp-openssl] no unused vcpkg_cmake_configure options

* [oatpp-openssl] no unused vcpkg_cmake_configure options

Co-authored-by: mheyman <mheyman@localdomain>
2021-09-01 11:48:01 -07:00

26 lines
754 B
CMake

set(OATPP_VERSION "1.2.5")
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
# get the source
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO oatpp/oatpp-openssl
REF ${OATPP_VERSION}
SHA512 c5a40691d846703378c2965f2ad9b99edb2025d47854719bab4e80a4771258c2b72cfba0135b63dd9e2387da4549b5bc6cebfc1913a8006d14d59e250be19060
HEAD_REF master
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
"-DOATPP_BUILD_TESTS:BOOL=OFF"
)
vcpkg_cmake_install()
vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/oatpp-openssl-${OATPP_VERSION}")
vcpkg_copy_pdbs()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)