-
Notifications
You must be signed in to change notification settings - Fork 93
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
VCPKG as primary dependency manager (and internal submodules as optional) #397
base: develop
Are you sure you want to change the base?
Conversation
May be the problem is related to this issue microsoft/vcpkg#25349 , vcpkg is cloned properly, but the dependencies of vcpkg.json are not. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #397 +/- ##
========================================
Coverage 66.08% 66.08%
========================================
Files 395 395
Lines 44625 44625
========================================
Hits 29492 29492
Misses 15133 15133 ☔ View full report in Codecov by Sentry. |
We probably should fix this in the cpp bindings and act first. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good
@@ -11,7 +11,8 @@ jobs: | |||
steps: | |||
- uses: actions/checkout@v4 | |||
with: | |||
submodules: true | |||
submodules: recursive | |||
fetch-depth: 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice 👍
This PR integrates VCPKG as a submodule in the repository.
It introduces an CMake option -DUSE_PACKAGED_SUBMODULES and this is turned off by default.
It handles everything including libressl. I have tested with both options and the tests also seem to run through.