https://github.com/tblauwe/cls_example
Repository generated from cpp_lib_starter template repository
https://github.com/tblauwe/cls_example
Last synced: 4 months ago
JSON representation
Repository generated from cpp_lib_starter template repository
- Host: GitHub
- URL: https://github.com/tblauwe/cls_example
- Owner: TBlauwe
- Created: 2024-06-12T19:49:53.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-06-12T20:01:47.000Z (about 1 year ago)
- Last Synced: 2025-01-30T11:25:52.907Z (5 months ago)
- Language: CMake
- Size: 93.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README


[](https://github.com/TBlauwe/CLS_Example/releases)
[](https://github.com/TBlauwe/CLS_Example/blob/master/LICENSE)
[](https://TBlauwe.github.io/CLS_Example/)
[](https://TBlauwe.github.io/CLS_Example/examples.html))
)
)
Repository generated from cpp_lib_starter template repository
## Features
*
## Getting started
### Installation
Using **[CPM](https://github.com/cpm-cmake/)**, add the following lines to your cmake file:
```cmake
CPMAddPackage(
NAME CLS_Example
GITHUB_REPOSITORY TBlauwe/CLS_Example
)target_link_libraries(your_target PUBLIC CLS_Example)
```CMake options
| Options | Default | Description |
| ---: | :---: | :--- |
| `CLS_EXAMPLE_SKIP_DEPENDENCIES` | `true` in consumer mode, `false` otherwise | Disable automatic dependencies downloading with **[CPM](https://github.com/cpm-cmake/)** |
| `CPM_MY_DEPENDENCY_VERSION` | `true` in consumer mode, `false` otherwise | Override a dependency's version. Value must be a git tag, e.g `master`, `v3.12`, `1.0` |### Minimal example
```cpp
#include
```