Skip to content
#

Conan

conan logo

Conan, the C / C++ Package Manager for Developers. The open source, decentralized and multi-platform package manager to create and share all your native binaries.

Here are 751 public repositories matching this topic...

puetzk
puetzk commented Nov 11, 2019

I needed to conditionally add an extra generator (that comes from a conditional requirement)
to build installers on WIN32

so I did

set(CONAN_GENERATORS)
if(WIN32)
	list(APPEND CONAN_GENERATORS innosetup)
endif()

conan_cmake_run(
	...
	GENERATORS ${CONAN_GENERATORS_x}
	BASIC_SETUP CMAKE_TARGETS
	)

And this failed with the error

conan install: error: unrecognize

JimmySnails
JimmySnails commented Feb 12, 2020

Could you please provide a way to build SDL2 for emscripten with --enable-thread / pthread and atomic?

right now, the configure script for SDL2 is always called with --disable-threads (and also atomic is disabled).

If there's a specific reason, you could add an option to enable / disable it to the package.

When crosscompiling my project for emscripten, linking fails with:

wasm atomi

bug
gomons
gomons commented Feb 4, 2020
  • Conan Package Tools Version: 0.30.4
  • Operating System: Linux

Additional info

Class DockerCreateRunner uses os.getcwd():

command = ('%s docker run --rm -v "%s:%s/project%s" %s %s %s %s %s '
            '"%s cd project && '
            '%s run_create_in_docker "' % (self._sudo_docker_command,
                                            os.getcwd(),
                    
jgsogo
jgsogo commented Jun 26, 2019

We need to start thinking about documenting those things that are stable. I'm not sure if it is a good idea to document the extension in the Conan docs or it is better to keep there just a reference and create a full readthedocs, GitHub pages,... in this repo.

The good thing is that in the

Created by Diego Rodriguez-Losada, Luis Martinez de Bartolome

Released December 1, 2015

Latest release 7 days ago

Repository
conan-io/conan
Website
conan.io

Related Topics

c cmake cplusplus cpp multi-platform package-manager
You can’t perform that action at this time.