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
Using the generic provider this works:
<compilerStartOptions> <compilerStartOption>"-DNAME_versie=\"NAME\ v${project.version}\"" "-DBUILD_YEAR=\"${current.year}\"" "-DBUILD_DATE=\"${current.day}\""</compilerStartOption> </compilerStartOptions>
With the new mingw provider I have to remove the surrounding quotes from the individual quotes:
<compilerStartOptions> <compilerStartOption>-DNAME_versie=\"NAME\ v${project.version}\" -DBUILD_YEAR=\"${current.year}\" -DBUILD_DATE=\"${current.day}\"</compilerStartOption> </compilerStartOptions>
But this fails because v${project.version}\" is passed as a separate argument.
v${project.version}\"
The text was updated successfully, but these errors were encountered:
Hi,
I will take a look ASAP. Thanks
Sorry, something went wrong.
No branches or pull requests
Using the generic provider this works:
With the new mingw provider I have to remove the surrounding quotes from the individual quotes:
But this fails because
v${project.version}\"
is passed as a separate argument.The text was updated successfully, but these errors were encountered: