Update Conan_Usage authored by Jonathan Wendt's avatar Jonathan Wendt
......@@ -15,6 +15,9 @@ conan remote add rwth-vr--bintray https://api.bintray.com/conan/rwth-vr/conan
## Build your project (from terminal)
### Windows
**The prebuild packages should be available on the hosted packages, so you do not need to build yourself, if they aren't proceed as described below.**
* Open "Developer Prompt for VS2017".
* Ensure that cmake is appended to your path variable. Otherwise:
......@@ -29,7 +32,14 @@ conan install --build=missing -s compiler="Visual Studio" -s compiler.version=15
cmake <relative path to source directory>
```
* **Troubleshooting:**
* Windows Universal CRT SDK in the Visual Studio 2017 Installer apparently has to be ticked otherwise an error with missing ctypes.h occurs during building glew. O
* Windows Universal CRT SDK in the Visual Studio 2017 Installer apparently has to be ticked otherwise an error with missing ctypes.h occurs during building glew.
* **Uploading**
```
conan user -p <APIKEY> -r rwth-vr--bintray <USERNAME>
conan upload glew/2.1.0@RWTH-VR/thirdparty --all (respectively for every other lib)
```
* APIKEY can be found in you bintray profile under *Edit Profile*
### Apple
......
......