Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arvidn/conan-boost-build-gen
a conan generator for boost-build
https://github.com/arvidn/conan-boost-build-gen
boost-build conan
Last synced: 26 days ago
JSON representation
a conan generator for boost-build
- Host: GitHub
- URL: https://github.com/arvidn/conan-boost-build-gen
- Owner: arvidn
- License: bsd-3-clause
- Created: 2017-02-12T23:24:33.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-26T20:55:47.000Z (over 7 years ago)
- Last Synced: 2024-10-28T00:31:52.084Z (2 months ago)
- Topics: boost-build, conan
- Language: Python
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Boost Build conan generator
---------------------------This conan generator generates a ``project-root.jam`` file with ``lib`` targets
for all conan dependencies.For example, a project depending on ``OpenSSL/1.0.2g@lasote/stable`` will have
the following targets generated::lib ssl :
: # requirements
ssl
/Users/arvid/.conan/data/OpenSSL/1.0.2g/lasote/stable/package/811d822905b54fc167634e916129401c4f86d1e5/lib
: # default-build
: # usage-requirements
/Users/arvid/.conan/data/OpenSSL/1.0.2g/lasote/stable/package/811d822905b54fc167634e916129401c4f86d1e5/include
;lib crypto :
: # requirements
crypto
/Users/arvid/.conan/data/OpenSSL/1.0.2g/lasote/stable/package/811d822905b54fc167634e916129401c4f86d1e5/lib
: # default-build
: # usage-requirements
/Users/arvid/.conan/data/OpenSSL/1.0.2g/lasote/stable/package/811d822905b54fc167634e916129401c4f86d1e5/include
;alias conan-deps :
ssl
crypto
;In you ``Jamfile``, add a dependency on ``conan-deps``, like this::
exe my_executable : foobar.cpp conan-deps ;
Note that all other target names may be unpredictible.
In order to use this generator, add a dependency on it on your ``conanfile.txt``
and use the ``BoostBuild`` generator.::
[requires]
BoostBuildGen/1.0@arvidn/testing[generators]
BoostBuild