Make generated CMake projects consumable via FetchContent - #9
Merged
Conversation
Detect top-level vs embed so add_subdirectory/FetchContent only build the library by default. Move CLI/JSON/spdlog onto the app, export package config for find_package, and document the three consumption paths.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
IS_TOP_LEVEL) soadd_subdirectory/FetchContentonly build the library by default (app, tests, benchmarks, and app deps off unless opted in).install(EXPORT)/find_packagedo not require third-party targets.${name}Config.cmake+install(EXPORT)package config, dual aliases (::liband::${target}), and README docs for all three consumption modes.Proven end-to-end
Bootstrapped a calc-like package with
cppboot, pushed to GitHub, and verified a local consumer with:add_subdirectoryFetchContentfind_packageafter installSmoke repo was deleted after proof. 60 unit/integration tests pass.
Test plan
pytest(60 passed)