How to install all dependencies for a package? Trying to install cpprestsdk. In dependencies to this package - bzip2, lzma, boost, etc. At the moment, after each new file, I add another package to the team and try again. It looks something like this:

conan install ../conanfile.txt --profile=gcc --build lzma conan install ../conanfile.txt --profile=gcc --build lzma --build boost_regex conan install ../conanfile.txt --profile=gcc --build lzma --build boost_regex --build boost_conatiner // etc 

I understand that the installed packages can not be re-enabled - but this helps a little.

Contents of conanfile.txt :

 [requires] cpprestsdk/2.10.2@bincrafters/stable gtest/1.8.1@bincrafters/stable [generators] cmake 

Env .: macOS, gcc 8.3

  • install must install dependencies - VTT
  • @VTT, maybe I'm doing something wrong, but - no, it does not install. - isnullxbh
  • Well, what do you have written in conanfile.txt? - VTT
  • @VTT, updated the question. - isnullxbh

0