You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`http-link-header-cpp` is a header-only C++11 library. Building can be done with cmake >= 3.1 and has been tested with g++ and clang compilers.
59
-
60
-
`http-link-header-cpp` uses a pretty standard cmake build system. After cloning the repository, execute the following:
61
-
62
-
```shell
63
-
cd http-link-header-cpp
64
-
mkdir build
65
-
cd build
66
-
cmake ..
67
-
cmake --build . --config Release
68
-
```
69
-
70
-
You can also run all the tests:
71
-
72
-
```shell
73
-
make test
74
-
```
75
-
76
56
## Dependencies
77
57
78
-
`http-link-header-cpp` has a dependency on [uriparser](https://github.com/uriparser/uriparser/)
79
-
which it uses when resolving URI references. Any project using `http-link-header-cpp` should also be able to find a copy of
80
-
uriparser. uriparser should either be installed locally or included within the the project's code.
58
+
### Build dependencies / runtime dependencies
59
+
-[uriparser](https://github.com/uriparser/uriparser/): used when resolving URI references.
81
60
82
-
## Installing
61
+
### Test dependencies
62
+
-[doctest](https://github.com/doctest/doctest): used in the unit tests.
83
63
84
-
`http-link-header-cpp` will install its header file, `http-link-header.h`, and a few cmake helper files that can be used by other
85
-
projects to find and use `http-link-header-cpp`.
64
+
## Development pre-requisites
86
65
87
-
The default installation locations for `http-link-header-cpp` are `/usr/local/include` and `/usr/local/share`.
66
+
1. Install a toolchain. `http-link-header-cpp` is a header-only C++11 library. You will need a recent GCC or Clang compiler supporting fully C++17 at least.
-`-DUSE_CONAN=ON`: tell `CMakeLists.txt` to load `conanbuildinfo.cmake` generated by the `conan install` command.
96
+
-`-GNinja`: Use Ninja instead of GNU Make. Remove this if you prefer using GNU Make as it is the default CMake generator.
97
+
-`-DCMAKE_PREFIX_PATH=$(pwd)`: Variable telling CMake where to find the generated config files for dependencies (i.e. `<lowercasePackageName>-config.cmake`)
98
+
-`-DCMAKE_BUILD_TYPE=Release`: Change it to `Debug` if you want to build the project with `-O0 -g`
99
+
-`-DCMAKE_INSTALL_PREFIX=$(pwd)/sysroot`: If `CMAKE_INSTALL_PREFIX` is not set, the default installation locations for `http-link-header-cpp` are `/usr/local/include` and `/usr/local/share`.
100
+
101
+
Build the project.
102
+
```txt
103
+
ninja
121
104
```
122
105
123
-
### Not installing
106
+
Run the unit tests.
107
+
```txt
108
+
ninja test
109
+
```
124
110
125
-
You can use `http-link-header-cpp` in your project without installing it at all. This will require a little more
126
-
configuration.
111
+
Install the build artifacts.
112
+
```txt
113
+
ninja install
114
+
```
127
115
128
-
Once you put the `http-link-header-cpp` files somewhere (likely within your own project), then you use
129
-
cmake's `add_subdirectory()`. You will want to make sure not to install `http-link-header-cpp` during your install process
0 commit comments