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

368 questions
0
votes
1 answer

Connecting Conan package with ordinary Qt directory

I've studied creating package in the official Conan tutorial. I'd like to create my own package for a static library (CMake-based project). It supports Linux and Windows. But it depends on Qt LTS 5.9x. CMakeLists.txt contains a call to find_package.…
ilya
  • 941
  • 10
  • 30
0
votes
1 answer

How to Customize the Conan Visual_Studio Generator Output File

I am generating Visual Studio property files using Conan's visual_studio generator. The resulting output from this generator is "conanbuildinfo.props". Within this properties file, the following optional tag can be added to specify a display-name…
Jeff G
  • 3,918
  • 1
  • 31
  • 67
0
votes
1 answer

Recognize linux distribution in conan

I created a Ncurses conan package for some projects where I use Ncurses. I use a conanfile.py for configuration. Now I have the problem that under Centos terminfo is in /usr/lib and under Debian-based system it is in /lib. Therefor I have to set an…
Thomas Sablik
  • 15,040
  • 7
  • 26
  • 51
0
votes
1 answer

Link Conan packages over local repositories

Is there some way to link Conan packages over local repositories like Bintray (conan-center) ? I read Manipulating Artifacts but I just found Copy and Move features. Regards.
uilianries
  • 2,125
  • 10
  • 20
0
votes
1 answer

Docker - pass username and password for git repository, that is downloaded via conanfile

I have the following problem: I am using Conan and in one of my conanfiles I am downloading from a private repository. That works so far, but when I am using Docker it complains that it doesn't have the username and password for this repository. Is…
CmasterG
  • 125
  • 1
  • 2
  • 9
0
votes
1 answer

conan io : Unknown command 'export-pkg'

I am using conan io to create a package from pre build binaries. I found this post on the conan website: http://docs.conan.io/en/latest/creating_packages/existing_binaries.html but the problem is: Every time I try to use export-pkg command I get an…
Berta_B
  • 23
  • 3
0
votes
1 answer

Upload Conan packages from CI

I run my own Conan server and want to automatically upload packages generated by CI. When I use conan upload it prompts me for a username and password. Is there a way to automate this process?
user3624760
0
votes
1 answer

Conan.io and netbeans - howto setup a project

I'm trying NetBeans as my new IDE for c++. I would love to use conan.io as package manager. My conanfile.py looks like this (from the conan site): class MyConanTestProj(ConanFile): settings = "os", "compiler", "build_type", "arch" requires =…
Wolfgang
  • 260
  • 2
  • 11
0
votes
1 answer

How to get right values from requirements in Conan recipe to be used as CMake parameters?

I'm writing recipe for creating package for rabbitmq-c library. When ENABLE_SSL_SUPPORT option in its CMake script is checked it requires OpenSSL library for its build. As it shown on provided screen paths to Debug and Release versions of…
bobeff
  • 2,800
  • 1
  • 26
  • 51
0
votes
0 answers

Using Conan (and SVN) as a dependence manager for Matlab projects

I'm looking into using Conan.io as a package/dependency manager for simple source-code projects in Matlab/Python. We are a team of around 20 developers (of very different experience levels) with a single SVN server set up, including all our source…
casparjespersen
  • 2,662
  • 4
  • 32
  • 44
0
votes
1 answer

How to build openssl on linux using Conan

This seems to be the best way to build openssl from source on Linux. However, I can not find a way to build it using -fPIC and -shared (since it will be a static file linked). Version:…
Mike5050
  • 535
  • 1
  • 5
  • 17
0
votes
1 answer

Using conan to build Qt from source does not build Qt5Help, Cmake cannot find a package configuration file provided by "Qt5Help"

I am trying to use the qt conan package qt/5.6.2@osechet/stable to add qt to an existing project. For this project I need the Qt help package. I have: [requires] qt/5.6.2@osechet/stable [options] qt:tools=True in my conanfile. How do I get the…
Kevin Lannen
  • 89
  • 3
  • 13
0
votes
1 answer

How can I solve undefined reference errors with Conan and SDL2 on Ubuntu 16.10?

I am trying to get conan working in a test project by following their Geting Started guide so that I can begin using it in a real project. I am attempting to use SDL2 with glew in a C++ project compiled with g++ on Ubuntu 16.10 x64. My…
john01dav
  • 1,666
  • 1
  • 12
  • 32
0
votes
1 answer

Trouble creating Conan package

I'm trying to use Conan to package some files and executables together for version control, however after looking at the Conan documentation it's still unclear to me how to do this, or if Conan is even the right tool for the job. Basically I want…
Stefan
  • 171
  • 2
  • 11
0
votes
0 answers

why chkconfig can't add my script?

Hy! I want to add my script in init.d which starts a server at startup but when I can't add it to chkconfig. This is a head of my script : #!/bin/bash # chkconfig : 2345 19 18 # Default-Start : 2 3 4 5 # Default-Stop : 0 1 6 #…
user7127267
1 2 3
24
25