We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Provide DSL for configuring target specific sources. It is enough to allow including sources by pattern.
including
The text was updated successfully, but these errors were encountered:
Do we really need more than this?
tasks.named<MetalCompileTask>("compile-main-cxx") { when (target.get()) { "i686-elf" -> include("x86_32-elf/*") "x86_64-elf" -> include("x86_64-elf/*") } }
Sorry, something went wrong.
Yes, we do: we must apply the same include/exclude patterns to both compile objects and compile commands tasks.
Successfully merging a pull request may close this issue.
Provide DSL for configuring target specific sources.
It is enough to allow
including
sources by pattern.The text was updated successfully, but these errors were encountered: