feat(build)!: select what gets built with conan options - #91
Open
EnriqueParodi wants to merge 1 commit into
Open
feat(build)!: select what gets built with conan options#91EnriqueParodi wants to merge 1 commit into
EnriqueParodi wants to merge 1 commit into
Conversation
EnriqueParodi
force-pushed
the
feat/conan-build-selection
branch
from
August 19, 2026 12:41
0ea6447 to
8539957
Compare
Conan decides what the build contains, and therefore which dependencies it fetches: mode picks the components, and the with_* flags cover examples, tests, clang-tidy, coverage, sanitizers and the documentation. A basic build resolves 19 dependencies where a full one resolves 29, so a build without the explorer no longer downloads imgui, SDL and opengl to leave them unused. Components carry a guard that reads SEN_BUILD_<NAME>, which is what a developer overrides at the cmake step to skip one for a while. Enabling a component that the mode left out is not possible that way, because conan never fetched what it needs. BREAKING CHANGE: SEN_DISABLE_EXTRA_COMPONENTS is gone; use -o sen/*:mode=basic. The ENABLE_CT, ENABLE_COVERAGE, ENABLE_EXAMPLES, ENABLE_TESTS, ENABLE_ASAN and ENABLE_TSAN environment variables are no longer read; use the matching options.
EnriqueParodi
force-pushed
the
feat/conan-build-selection
branch
from
August 20, 2026 11:26
8539957 to
86accf0
Compare
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.
Conan decides what the build contains and therefore what it fetches:
modepicksthe components, and the
with_*flags cover examples, tests, clang-tidy, coverage,sanitizers and the documentation. A
basicbuild resolves 19 dependencies where afullone resolves 29, so a build without the explorer no longer downloads imgui,SDL and opengl to leave them unused. Components keep a cmake guard, which is how a
developer skips one for a while.
Breaking:
SEN_DISABLE_EXTRA_COMPONENTSand theENABLE_*environment variablesare gone; use the matching conan options.