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
Currently I can only use set_languages("cxx17") but I need c++latest in visual studio. Using
set_languages("cxx17")
c++latest
set_languages("cxx17") add_cxflags("/std:c++latest")
Builds but generates the warning:
2>cl : Command line warning D9025: overriding '/std:c++17' with '/std:c++latest'
Using only add_cxflags builds but Intellisense then assumes C++14 failing to parse files correctly.
Using
set_languages("cxx20")
Builds but breaks intellisense.
set_languages("cxxlatest")
The text was updated successfully, but these errors were encountered:
you need only set to cxx20, it will be mapped to c++latest or c++20
xmake/xmake/modules/core/tools/cl.lua
Line 227 in 243ddec
Builds but breaks intellisense
vsxmake? see #1105
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
Currently I can only use
set_languages("cxx17")
but I needc++latest
in visual studio.Using
Builds but generates the warning:
Using only add_cxflags builds but Intellisense then assumes C++14 failing to parse files correctly.
Using
Builds but breaks intellisense.
Describe the solution you'd like
set_languages("cxxlatest")
The text was updated successfully, but these errors were encountered: