-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Packaging: Refactor cpp libraries #6488
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
Conversation
Uses new style naming scheme.
5e2e014
to
9779426
Compare
It looks like a handful of files under csharp/ql/lib/semmle/code/csharp/frameworks/system/data/ were accidentally committed |
Thanks. You're right. Let me remove them. |
This PR separates the core cpp packs into `codeql/cpp-queries` and `codeql/cpp-all`. There are very few lines of code changed. Almost all changes are moving files around.
520af02
to
3b05a60
Compare
We can't have recursive references to query packs.
3b05a60
to
d13ce88
Compare
Also, fix up some library path dependencies.
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.
LGTM.
Once we have all languages refactored, we should probably make a sweep through the whole repo to ensure that all uses of the old pack names (codeql-cpp
, etc.) are gone, as well as all uses of libraryPathDependencies
.
Yes, I was trying to make the smallest change possible at first. And we can complete the changes later. |
6982ff8
to
03d6b15
Compare
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.
Still LGTM
All checks have passed on this PR except |
This PR separates the core cpp packs into
codeql/cpp-queries
andcodeql/cpp-all
.There are very few lines of code changed. Almost all changes are moving
files around.