mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
The tag is not on any branch. Changelog: 1.14.2: https://github.com/libcpr/cpr/releases/tag/1.14.2 Changed: - test: don't reflect Content-Length from request - Fixed curlholder Double Free - Fix error when running CMake configure multiple times with CPR_BUILD_TESTS, bump CMake min version to 3.18 - fix: replace curl_error_map with switch to fix Static Initialization Order Fiasco - Updated Bazel Instructions - Bump actions/upload-artifact from 5 to 6 - Bump actions/checkout from 5 to 6 - Bump jwlawson/actions-setup-cmake from 1.14 to 2.1 v1.14.1: https://github.com/libcpr/cpr/releases/tag/1.14.1 Changed: - Fixed SSE Windows string parsing v1.14.0 https://github.com/libcpr/cpr/releases/tag/1.14.0 Changed: - fix: Crash when building with /MT in MSVC (double-destructor) #1276 - 1.14.0 Release Preparation - NuGet Release Build Fixes - Add support for Server Sent Events (SSE) Signed-off-by: Andrej Kozemcak <andrej.kozemcak@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
24 lines
663 B
BlitzBasic
24 lines
663 B
BlitzBasic
SUMMARY = "Curl for People - C++ Requests"
|
|
DESCRIPTION = "Curl for People C++ Requests is a simple wrapper around \
|
|
libcurl inspired by the excellent Python Requests project."
|
|
HOMEPAGE = "https://docs.libcpr.org/"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=08beaae5deae1c43c065592da8f38095"
|
|
|
|
DEPENDS = "curl openssl"
|
|
|
|
SRC_URI = "git://github.com/libcpr/cpr.git;protocol=https;nobranch=1;tag=${PV}"
|
|
SRCREV = "f091b2c061b307ee89b164c39976fc9202a1c79d"
|
|
|
|
|
|
inherit cmake
|
|
|
|
# building tests is currently using FetchContent for mongoose
|
|
EXTRA_OECMAKE += "\
|
|
-DCPR_USE_SYSTEM_CURL=ON \
|
|
-DCPR_BUILD_TESTS=OFF \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|