Changes
Page history
tvierjahn created page: Conan_Usage
authored
Aug 16, 2017
by
Thomas Vierjahn
Show whitespace changes
Inline
Side-by-side
Conan_Usage.md
0 → 100644
View page @
509b6b5b
# Conan Usage
## Setup
*
install conan:
```
pip install conan
```
*
configure conan to use our package repository for packages we (still) need to provide orselves:
```
conan remote add rwth-vr--bintray https://api.bintray.com/conan/rwth-vr/conan
```
## Build your project (from terminal)
```
cd <build directory>
conan install <relative path to source directory> --build=missing
cmake <relative path to source directory>
```
You can also use CMake-GUI for the last step.
\ No newline at end of file