Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 696 Bytes

README.md

File metadata and controls

39 lines (25 loc) · 696 Bytes

URI-PARSER

URL encoder/decoder for C++

Requirements

  • C++ 17

Building & Installation

Installation

uri-parser is a header-only library. Just copy the include directory to your include path.

Building examples

mkdir build
cd build
cmake .. -DBUILD_EXAMPLE=ON
make

Building tests

mkdir build
cd build
cmake .. -DBUILD_TESTS=ON
make && make test ARGS="-V"

License

Boost v1

Note

Most of the code in this repository is slight modification of code written by Davis E. King (davis@dlib.net) for dlib. Original file. If you'd like to donate, do so to the original author, not to me.