Skip to content

Commit d53364e

Browse files
author
Matthieu Longo
committed
Update development workflow in README
1 parent a14e8b4 commit d53364e

File tree

1 file changed

+48
-59
lines changed

1 file changed

+48
-59
lines changed

README.md

+48-59
Original file line numberDiff line numberDiff line change
@@ -53,82 +53,71 @@ such links in HTTP headers with the "Link:" header field.
5353
std::cout << links[1].linkTarget << std::endl; // https://example.org/a/other
5454
```
5555

56-
## Building
57-
58-
`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-
7656
## Dependencies
7757

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.
8160

82-
## Installing
61+
### Test dependencies
62+
- [doctest](https://github.com/doctest/doctest): used in the unit tests.
8363

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
8665

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.
67+
2. Install CMake.
68+
3. Install Python.
69+
4. Install conan: `python3 -m pip install -U conan` (more details at [docs.conan.io](https://docs.conan.io/en/latest/index.html))
70+
- run `conan` once to initialize conan home (`~/.conan`)
71+
- create a conan profile for the default system compiler
8872

89-
To install using cmake after building and testing, execute the following:
73+
## Development workflow
9074

91-
```shell
92-
cmake --build . --config Release --target install
75+
After cloning the repository, create a build directory at the root of the package.
76+
```txt
77+
mkdir build-dir && cd build-dir
9378
```
9479

95-
You should see output similar to:
96-
97-
```shell
98-
-- Installing: /usr/local/share/http-link-header-cpp/cmake/http-link-headerTargets.cmake
99-
-- Installing: /usr/local/share/http-link-header-cpp/cmake/http-link-headerConfig.cmake
100-
-- Installing: /usr/local/share/http-link-header-cpp/cmake/http-link-headerConfigVersion.cmake
101-
-- Installing: /usr/local/include/http-link-header.h
80+
Pull the dependencies with Conan.
81+
```txt
82+
conan install --build=missing ..
10283
```
10384

104-
If you want the files to be installed somewhere different, you can set the installation prefix when running the initial cmake command. For example:
105-
85+
Generate the build scripts with `cmake`.
10686
```shell
107-
cmake -DCMAKE_INSTALL_PREFIX:PATH=/tmp/http-link-header-cpp-install ..
108-
cmake --build . --config Release --target install
87+
cmake -DUSE_CONAN=ON \
88+
-GNinja \
89+
-DCMAKE_PREFIX_PATH=$(pwd) \
90+
-DCMAKE_BUILD_TYPE=Release \
91+
-DCMAKE_INSTALL_PREFIX=$(pwd)/sysroot \
92+
.. # the directory containing the conanfile.txt
10993
```
110-
111-
## Using http-link-header-cpp
112-
113-
### After installing
114-
115-
Once `http-link-header-cpp` is installed, you can use it in your project with a simple cmake `find_package()` command. Be
116-
sure to mark it as using `CONFIG` mode since we just installed those config files. Also mark it as required if your
117-
project requires `http-link-header-cpp`.
118-
119-
```shell
120-
find_package("http-link-header-cpp" CONFIG REQUIRED)
94+
Explanations:
95+
- `-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
121104
```
122105

123-
### Not installing
106+
Run the unit tests.
107+
```txt
108+
ninja test
109+
```
124110

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+
```
127115

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
130-
by using the `EXCLUDE_FROM_ALL` option.
116+
## Exporting the package into Conan cache
131117

118+
At the root of the package:
132119
```shell
133-
add_subdirectory(path/to/http-link-header-cpp ${PROJECT_BINARY_DIR}/http-link-header-cpp-build EXCLUDE_FROM_ALL)
120+
conan create . http-link-header-cpp/0.9.0@conan/testing --build=missing
134121
```
122+
123+
The package can be pulled in others packages depending on it by adding `http-link-header-cpp/0.9.0@conan/testing` as a build dependency.

0 commit comments

Comments
 (0)