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
cpp
Lime has the cpp target which is like a global shortcut to linux, windows and mac targets using -cpp flag. It would be handy turning this
linux
windows
mac
-cpp
{ "label": "Windows / Debug (Straight to Chart Editor)", "target": "windows", "args": ["-debug", "-DCHARTING", "-DFEATURE_DEBUG_FUNCTIONS"] }, { "label": "Linux / Debug (Straight to Chart Editor)", "target": "linux", "args": ["-debug", "-DCHARTING", "-DFEATURE_DEBUG_FUNCTIONS"] }, { "label": "MacOS / Debug (Straight to Chart Editor)", "target": "mac", "args": ["-debug", "-DCHARTING", "-DFEATURE_DEBUG_FUNCTIONS"] }
Into just
{ "label": "Any / Debug (Straight to Chart Editor)", "target": "cpp", "args": ["-debug", "-DCHARTING", "-DFEATURE_DEBUG_FUNCTIONS"] },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Lime has the
cpp
target which is like a global shortcut tolinux
,windows
andmac
targets using-cpp
flag. It would be handy turning thisInto just
The text was updated successfully, but these errors were encountered: