biicode support #6
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds support for the libappc library on biicode C/C++ dependency manager.
This contains three simple changes:
CMakeLists.txt: biicode is file based, dependencies are managed on individual files, but those are usually shared/shipped as a block.manu343726/libappcblock in this case. A block, the libappc project in this case, has its ownCMakeLists.txtfile with build settings. So to support biicode you just have to take care of bii and its block targets in your existing CMakeLists.txt file. Ask me if you have any doubts about what bii does internally and what those targets mean.biicode.conf: This is the configuration file of the block. There are settings such as the specific versions on the dependencies the block has (libcurl and google test), and how your existing#includes are mapped to point to the bii blocks.REAMDME.md: Badge pointing to the biicode block, and with biicode getting started entry.The point of adding bii support is that you don't have to manage your third party deps manually through custom cmake scripts. Except libfile (We have no libfile block yet) both gtest and libcurl are managed by biicode automatically from your
#includedirectives.