https://github.com/ahajha/glaze-conan
A basic Conan recipe for the glaze json IO library
https://github.com/ahajha/glaze-conan
Last synced: 2 months ago
JSON representation
A basic Conan recipe for the glaze json IO library
- Host: GitHub
- URL: https://github.com/ahajha/glaze-conan
- Owner: Ahajha
- License: mit
- Created: 2022-10-13T22:53:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-18T00:08:49.000Z (over 2 years ago)
- Last Synced: 2023-08-23T06:49:03.684Z (almost 2 years ago)
- Language: Python
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# glaze-conan
A basic Conan recipe for the glaze json IO library## How to install the package
```
git clone https://github.com/Ahajha/glaze-conan.git
conan create glaze-conan @/
# Example:
conan create glaze-conan 0.0.2@local/stable
```(I may look into getting a remote for this in the future, or uploading to conan-center-index directly)
Using the package: (Basic CMake example)
conanfile.txt:
```
[requires]
glaze/0.0.2@local/stable[generators]
CMakeDeps
CMakeToolchain
```CMakeLists.txt:
```cmake
cmake_minimum_required(VERSION 3.15)project(glaze-conan-test CXX)
find_package(glaze REQUIRED)
add_executable(main main.cpp)
target_link_libraries(main PRIVATE glaze::glaze)
target_compile_features(main PRIVATE cxx_std_20)
```