Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/themarlboroman/curlw
Easy wrapper around libcurl, formerly "curl_request"
https://github.com/themarlboroman/curlw
curl usable wrapper
Last synced: 23 days ago
JSON representation
Easy wrapper around libcurl, formerly "curl_request"
- Host: GitHub
- URL: https://github.com/themarlboroman/curlw
- Owner: TheMarlboroMan
- License: mit
- Created: 2018-04-19T06:49:42.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-09-13T05:45:59.000Z (over 2 years ago)
- Last Synced: 2024-11-12T12:31:51.887Z (3 months ago)
- Topics: curl, usable, wrapper
- Language: C++
- Homepage:
- Size: 205 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# curlw
Wrappers around curl HTTP requests. Formerly known as "curl_request".
# Building under Linux.
- Install first the required libcurl components with 'apt-get install libcurl4-gnutls-dev';
- Do the out of source build:
- mkdir build
- cd build
- cmake ..
- make
- Whatever you use this for, compile with -lcurl.# Building under Windows 64 bit with mingw-w64.
- Make your life easy and get http://win-builds.org.
- Again, make your life easy and install all packages, even if you won´t use them.
- TODO: See how cmake does this...
- Modify the makefile_win file so the INCLUDE and LIBPATH variables point to the winbuilds include and lib directories.
- Open a shell. Set your path to the "bin" directory of winbuilds (PATH=%PATH%;path-to-the-bin-directory)
- mingw32-make.exe -f makefile_win
- Whatever you use this for, compile with -lcurl.dll# licenses
This library makes no sense without libcurl itself, whose license can be read on the LICENSE_THIRD_PARTY file.