vcpkg/ports/oatpp-libressl/portfile.cmake
Michael Heyman d1729dcaf5 [oatpp] Add new port (#9402)
* improvement: has oatpp package

* [oatpp] includes _CRT_SECURE_NO_WARNINGS compile-time flag

* [oatpp] no curl submodule (until it catches up with core)

* [oatpp] now version 0.19.11. Still no libretls module because of libretls3.0 dependency.

* no accidentally added debug messages in vcpkg_execute_build_process.cmake

* [oatpp] no empty depends line in CONTROL file

* [oatpp] no dump_variables() function in portfile.cmake

* [oatpp] no wwrning that only static libraries are supported

* [oatpp] uses vcpkg_check_linkage(ONLY_STATIC_LIBRARY) call

* [oatpp] curl submodule does not rely on pkg-config

* [oatpp] curl-submodule-no-pkg-config-in-vcpkg works on linux and windows

* [oatpp] portfile cleaned up

* [oatpp] no carriage returns in patch

* [oatpp]: split modules into their own ports

* [oatpp-libressl]: remove variable dump

* [libressl]: has check for UWP and ARM restored

* [libressl]: has check for UWP and ARM restored

* [libressl]: has check for UWP and ARM restored

* [oatpp-libressl]: builds if libressl works

* [oatpp]: version 1.0.0

* [oatpp]: no "Building ..." message

Co-authored-by: heymamd1 <Michael.Heyman@jhuapl.edu>
2020-05-15 13:34:08 -07:00

37 lines
1.2 KiB
CMake

set(OATPP_VERSION "1.0.0")
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
# get the source
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO oatpp/oatpp-libressl
REF 2cf02b6fd08bb9be29bdbe5188f35f2155c0c843 # 1.0.0
SHA512 053d017690d318edeeda63f782ee4845280b0f405e02249b18c30ac3d88cbfb1d3090bb6b60c0c8742f73357d60fa1695c369bef56a5ab7985d9773ea1fd52a2
HEAD_REF master
PATCHES "libress-submodule-downgrade-required-libressl-version.patch"
)
if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
set(OATPP_BUILD_SHARED_LIBRARIES_OPTION "ON")
else()
set(OATPP_BUILD_SHARED_LIBRARIES_OPTION "OFF")
endif()
vcpkg_configure_cmake(
SOURCE_PATH "${SOURCE_PATH}"
PREFER_NINJA
OPTIONS
"-DOATPP_BUILD_TESTS:BOOL=OFF"
"-DCMAKE_CXX_FLAGS=-D_CRT_SECURE_NO_WARNINGS"
"-DLIBRESSL_ROOT_DIR=${CURRENT_INSTALLED_DIR}"
"-DBUILD_SHARED_LIBS:BOOL=${OATPP_BUILD_SHARED_LIBRARIES_OPTION}"
)
vcpkg_install_cmake()
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/oatpp-libressl-${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)