Conan
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...
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
Provide nice Unicode symbols for fractional exponents wherever possible.
using namespace units;
using namespace units::si::literals;
std::cout << sqrt(1m) << "\n";NTTP `ratio`
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
Package and Environment Details (include every applicable attribute)
- Package Name/Version: openssl/1.1.1d
- Operating System+version: Linux CentOS 7.7.1908
- Compiler+version: GCC 7.3.1 (devtoolset-7)
- Docker image: **centos:7.7.190
-
Updated
May 23, 2020 - Dockerfile
- 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(),
Environment Details (include every applicable attribute)
- Operating System+version: Windows 10
- Compiler+version: -
- Conan version: 1.12.3, latest
- Python version: 3.8 (default download 32 Bit!)
recently, a new binary binary building service has been launched named conan center index.
if you're library author, maintainer, or just have some working recipe you would like to share, feel free to:
- [request an early access](https://github.com/co
-
Updated
Dec 16, 2019 - Python
Documentation
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
-
Updated
May 20, 2020 - Java
-
Updated
May 18, 2020 - Python
-
Updated
Dec 18, 2019 - Python
-
Updated
Nov 19, 2018 - CMake
-
Updated
Sep 9, 2019 - C++
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
From conan-io/conan#6896
The information stored in the
editable_packages.jsonin the Conan cache contains only the path to the folder where the recipe is. As a consequence, if the file is not calledconanfile.py, Conan will fail to locate the recipe.