An open API service indexing awesome lists of open source software.

https://github.com/saigut/cpp-proj-templ

C++ project template
https://github.com/saigut/cpp-proj-templ

cpp template-project

Last synced: about 1 year ago
JSON representation

C++ project template

Awesome Lists containing this project

README

          

# C++ project template

## Dependency
1. Install conan package manager
2. Adjust installation location of conan packages
```shell
# show
conan config get storage.path
# change
conan config set storage.path=
```

## Build
```shell
mkdir build
cd build
cmake ..
cmake --build . --parallel
```