fix(vcpkg): add ecosystem dependencies and fix empty feature arrays#278
Merged
Conversation
- Rename package to kcenon-monitoring-system (ecosystem naming) - Add schema, license, port-version, and supports metadata - Remove empty feature dependencies (thread-system, logger-system) - Move gtest to testing feature with gmock support - Remove unregistered ecosystem packages from dependencies (kcenon-common-system, kcenon-thread-system not in vcpkg registry) Note: Ecosystem dependencies are handled via git checkout in CI. Future work: Register kcenon packages to vcpkg registry. Partially addresses #277
8a83d98 to
2b02c5f
Compare
7 tasks
kcenon
added a commit
that referenced
this pull request
Apr 13, 2026
- Rename package to kcenon-monitoring-system (ecosystem naming) - Add schema, license, port-version, and supports metadata - Remove empty feature dependencies (thread-system, logger-system) - Move gtest to testing feature with gmock support - Remove unregistered ecosystem packages from dependencies (kcenon-common-system, kcenon-thread-system not in vcpkg registry) Note: Ecosystem dependencies are handled via git checkout in CI. Future work: Register kcenon packages to vcpkg registry. Partially addresses #277
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
Standardize vcpkg.json manifest format and fix empty feature dependency arrays.
Changes
kcenon-monitoring-system(ecosystem naming convention)$schema,license,port-version,supportsthread-system,logger-system)gtesttotestingfeature withgmocksupportBefore
{ "name": "monitoring-system", "dependencies": ["gtest"], "features": { "thread-system": { "dependencies": [] }, "logger-system": { "dependencies": [] } } }After
{ "name": "kcenon-monitoring-system", "license": "BSD-3-Clause", "supports": "!(uwp | xbox)", "dependencies": [], "features": { "testing": { "dependencies": [{ "name": "gtest", "features": ["gmock"] }] } } }Note on Ecosystem Dependencies
The ecosystem packages (
kcenon-common-system,kcenon-thread-system,kcenon-logger-system) are not yet registered in the vcpkg registry. Currently, these dependencies are handled via git checkout in CI workflows.A follow-up issue will track the vcpkg registry registration work.
Test Plan
Partially addresses #277