Added some instructions for conan install

This commit is contained in:
Phuntsok Drak-pa 2019-04-27 18:05:24 +02:00
parent 419270ee71
commit 1d3b149f43
1 changed files with 12 additions and 0 deletions

View File

@ -64,6 +64,18 @@ If you do not wish to overwrite your ~default~ profile, you can instead create a
new one, for instance ~clang~. To do so, write the name of your new profile (in
this example ~clang~) instead of ~default~ in the commands shown above.
You also *must* have the correct conan remotes activated. You will find the
dependencies on ~conan-center~ and ~bincrafters~. Run the command below:
#+begin_src shell
conan remote list
#+end_src
If ~conan-center~ and/or ~bincrafters~ are missing, you will need to run the
corresponding commands listed below.
#+begin_src shell
conan remote add conan-center https://conan.bintray.com
conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
#+end_src
Then, To build and run the program, go to the root of the project and run this:
#+begin_src shell
mkdir build && cd build