-
Notifications
You must be signed in to change notification settings - Fork 1
Use public vcpkg registry #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
afa6bfb
Make use of public vcpkg registry
ccp-chargeback 9dcd64b
Add minimum version restriction on vcpkg dependencies
ccp-chargeback 9124c35
Re-format vcpkg.json file
ccp-chargeback 27952bf
Add option for building tests
ccp-chargeback 9e4ea8a
Add feature support for tests and document generation
ccp-chargeback b849f83
Remove redundant use of CTest
ccp-chargeback 3cdeb45
Make python and gtest host dependencies
ccp-chargeback 144b89f
Update feature descriptions
ccp-chargeback a47b468
Remove unnecessary status messages
ccp-chargeback 12229ae
Make Python only needed for doc generation
ccp-chargeback 7bc120a
Change CMake test settings
ccp-chargeback d6c5d6a
Update vcpkg feature settings
ccp-chargeback 66ca6c2
Remove debug status message
ccp-chargeback dfa1cd5
Making python and gtest as host dependencies
ccp-chargeback File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,45 +1,64 @@ | ||
| { | ||
| "dependencies": [ | ||
| { | ||
| "name": "python3-prebuilt", | ||
| "version>=": "3.12.3#2" | ||
| "name": "argparse", | ||
| "version>=": "2.2#0" | ||
| }, | ||
|
|
||
| { | ||
| "name":"argparse", | ||
| "version>=":"2.2#0" | ||
| "name": "curl", | ||
| "version>=": "8.11.1#1" | ||
| }, | ||
|
|
||
| { | ||
| "name":"curl" | ||
| "name": "cryptopp", | ||
| "version>=": "8.9.0#1" | ||
| }, | ||
|
|
||
| { | ||
| "name":"gtest" | ||
| "name": "yaml-cpp", | ||
| "version>=": "0.8.0#1" | ||
| }, | ||
|
|
||
| { | ||
| "name":"cryptopp" | ||
| "name": "zlib", | ||
| "version>=": "1.3.1" | ||
| }, | ||
|
|
||
| { | ||
| "name":"tiny-process-library" | ||
| }, | ||
|
|
||
| { | ||
| "name":"yaml-cpp" | ||
| }, | ||
|
|
||
| { | ||
| "name":"zlib" | ||
| }, | ||
|
|
||
| { | ||
| "name":"bsdiff-drake127" | ||
| "name": "bsdiff-drake127", | ||
| "version>=": "4.3.3" | ||
| } | ||
| ], | ||
|
|
||
| "default-features": [ | ||
| "tests" | ||
| ], | ||
| "features": { | ||
| "tests": { | ||
| "description": "Enable tests", | ||
| "dependencies": [ | ||
| { | ||
| "name": "gtest", | ||
ccp-chargeback marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "version>=": "1.15.2", | ||
| "host": true | ||
| }, | ||
| { | ||
| "name": "tiny-process-library", | ||
| "version>=": "2.0.4#3", | ||
| "host": true | ||
| } | ||
| ] | ||
| }, | ||
| "docs": { | ||
| "description": "Generate documentation", | ||
| "dependencies": [ | ||
| { | ||
| "name": "python3", | ||
ccp-chargeback marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "version>=": "3.12.3", | ||
| "host": true | ||
| } | ||
| ] | ||
| } | ||
| }, | ||
| "overrides": [ | ||
| { "name": "argparse", "version": "2.2#0" } | ||
| { | ||
| "name": "argparse", | ||
| "version": "2.2#0" | ||
| } | ||
| ] | ||
| } | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.