fix(vcpkg): update thread-system overlay port with correct configuration#288
Merged
Merged
Conversation
- Update version from 3.0.0 to 0.3.0 to match actual project version - Use specific commit SHA instead of VERSION variable - Replace generic build options with thread_system-specific options: - DBUILD_WITH_COMMON_SYSTEM=ON (required dependency) - DTHREAD_BUILD_INTEGRATION_TESTS=OFF - DBUILD_DOCUMENTATION=OFF - DTHREAD_ENABLE_LOCKFREE_QUEUE=ON - DTHREAD_ENABLE_WORK_STEALING=OFF - Remove MAYBE_UNUSED_VARIABLES as all options are now properly defined Refs #282
- Remove redundant port-version field (default value) - Reorder dependencies per vcpkg convention: regular deps -> platform-specific -> host deps Refs #282
- Update thread-system version from 3.0.0 to 0.3.0 in documentation - Update notes to reflect new portfile approach: - Now uses specific commit SHA for reproducibility - Uses project-specific CMake options Refs #282
3 tasks
kcenon
added a commit
that referenced
this pull request
Apr 13, 2026
…ion (#288) * fix(vcpkg): update thread-system port with correct CMake options - Update version from 3.0.0 to 0.3.0 to match actual project version - Use specific commit SHA instead of VERSION variable - Replace generic build options with thread_system-specific options: - DBUILD_WITH_COMMON_SYSTEM=ON (required dependency) - DTHREAD_BUILD_INTEGRATION_TESTS=OFF - DBUILD_DOCUMENTATION=OFF - DTHREAD_ENABLE_LOCKFREE_QUEUE=ON - DTHREAD_ENABLE_WORK_STEALING=OFF - Remove MAYBE_UNUSED_VARIABLES as all options are now properly defined Refs #282 * style(vcpkg): format thread-system manifest with vcpkg standard - Remove redundant port-version field (default value) - Reorder dependencies per vcpkg convention: regular deps -> platform-specific -> host deps Refs #282 * docs(vcpkg): update thread-system version and port notes - Update thread-system version from 3.0.0 to 0.3.0 in documentation - Update notes to reflect new portfile approach: - Now uses specific commit SHA for reproducibility - Uses project-specific CMake options Refs #282
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
Changes
portfile.cmake
BUILD_WITH_COMMON_SYSTEM=ON(required dependency)THREAD_BUILD_INTEGRATION_TESTS=OFFBUILD_DOCUMENTATION=OFFTHREAD_ENABLE_LOCKFREE_QUEUE=ONTHREAD_ENABLE_WORK_STEALING=OFFvcpkg.json
Documentation
Test Plan
vcpkg install --dry-runvcpkg format-manifestRelated Issues
Closes #282
Part of #279