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
|`DynamicLoader_CONFIG_INSTALL_DIR`| Install path for package configs |`lib/cmake/DynamicLoader`|
48
+
49
+
## Building
50
+
51
+
DynamicLoader uses the [CMake](https://cmake.org/) build system, and [CPM.cmake](https://github.com/cpm-cmake/CPM.cmake) for its (optional) dependencies.
52
+
You need CMake >= 3.24.0, Clang >= 12, or GCC >= 9 to build the library.
DynamicLoader uses [CTest](https://cmake.org/cmake/help/latest/manual/ctest.1.html) and [doctest](https://github.com/doctest/doctest) for its unit tests.
63
+
64
+
```Bash
65
+
cd build
66
+
ctest [-C Release]
67
+
```
68
+
69
+
## Documentation
70
+
71
+
DynamicLoader uses [Doxygen](https://www.doxygen.nl/) and [Doxygen Awesome](https://github.com/jothepro/doxygen-awesome-css) for its documentation.
72
+
73
+
```Bash
74
+
cmake --build build --target DynamicLoaderDocs
75
+
```
76
+
77
+
Please find the HTML documentation in `build/docs/html`
45
78
46
-
Uses [CPM.cmake](https://github.com/cpm-cmake/CPM.cmake), [doctest](https://github.com/doctest/doctest), and [Doxygen Awesome](https://github.com/jothepro/doxygen-awesome-css).
79
+
## Usage
80
+
81
+
DynamicLoader can be integrated in your project in several ways.
0 commit comments