Changes
Page history
Update Conan_Usage
authored
Aug 21, 2017
by
Thomas Vierjahn
Hide whitespace changes
Inline
Side-by-side
Conan_Usage.md
View page @
e47f1cee
...
...
@@ -16,7 +16,18 @@ 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
```
conan install --build=missing
<relative
path
to
source
directory
>
cmake
<relative
path
to
source
directory
>
```
You can also use CMake-GUI for the last step.
\ No newline at end of file
You can also use CMake-GUI for the last step.
* If you have multiple versions of Visual Studio installed:
```
conan install --build=missing -s compiler="Visual Studio" -s compiler.version=15
<relative
path
to
source
directory
>
```
* If you are working on Apple Mac w/ apple-clang
```
conan install --build=missing -s compiler="apple-clang" -s compiler.version="8.1"
<relative
path
to
source
directory
>
```
\ No newline at end of file