Questions tagged [conan]

Conan is a portable package manager, intended for C and C++ developers, but it is able to manage builds from source, dependencies, and precompiled binaries for any language.

Homepage

Documents

Github Repository

662 questions
-3
votes
1 answer

how to add a dependecy to a system library in my conanfile .py?

My ConanFile.py for TWSAPI's C++ code from conans import ConanFile, CMake, tools IBKR_VERSION = "10.18.01" class TwsApiConan(ConanFile): name = "twsapi" version = IBKR_VERSION license = "NA" url = "URL_TO_CODE_FORK" description…
Erik
  • 2,782
  • 3
  • 34
  • 64
1 2 3
…
44
45