[cpr] Changed library linkage to static. (#5705)

* [cpr] Changed library linkage to static.

* [cpr] Removed unintentional file.

* [cpr] Cleanup and bump version
This commit is contained in:
Alexej Harm 2019-03-21 18:15:37 +01:00 committed by Victor Romero
parent 773a685867
commit b5ae25cf3d
2 changed files with 5 additions and 7 deletions

View File

@ -1,4 +1,4 @@
Source: cpr
Version: 1.3.0-3
Version: 1.3.0-4
Description: C++ Requests is a simple wrapper around libcurl inspired by the excellent Python Requests project.
Build-Depends: curl[core]

View File

@ -1,15 +1,14 @@
include(vcpkg_common_functions)
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO whoshuu/cpr
REF 1.3.0
SHA512 fd08f8a592a5e1fb8dc93158a4850b81575983c08527fb415f65bd9284f93c804c8680d16c548744583cd26b9353a7d4838269cfc59ccb6003da8941f620c273
)
vcpkg_apply_patches(
SOURCE_PATH ${SOURCE_PATH}
PATCHES ${CMAKE_CURRENT_LIST_DIR}/enable-install.patch
HEAD_REF master
PATCHES enable-install.patch
)
vcpkg_configure_cmake(
@ -18,7 +17,6 @@ vcpkg_configure_cmake(
OPTIONS
-DBUILD_CPR_TESTS=OFF
-DUSE_SYSTEM_CURL=ON
-DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON
OPTIONS_DEBUG
-DDISABLE_INSTALL_HEADERS=ON
)