Skip to content

Instantly share code, notes, and snippets.

@aman-tiwari
Last active December 9, 2019 05:35
Show Gist options
  • Save aman-tiwari/60c942ff9e1f88e8426733b13cb2bdc6 to your computer and use it in GitHub Desktop.
Save aman-tiwari/60c942ff9e1f88e8426733b13cb2bdc6 to your computer and use it in GitHub Desktop.
openframeworks vscode windows, install and setup openframeworks with msys2 as here first: https://openframeworks.cc/setup/msys2/ , put the json files in the .vscode directory in openframeworks/apps/myApps/emptyExample
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/../../../libs/**",
"${workspaceFolder}/../../../libs/openFrameworks/utils/*",
"C:\\msys64\\mingw32\\include\\**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.17763.0",
"compilerPath": "C:/msys64/mingw32/bin/gcc.exe",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64"
}
],
"version": 4
}
{
"terminal.integrated.shell.windows": "C:\\msys64\\usr\\bin\\bash.exe",
"terminal.integrated.shellArgs.windows": [
"--login",
],
"terminal.integrated.env.windows": {
"CHERE_INVOKING": "1",
"MSYSTEM": "MINGW32",
},
}
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "make -j8",
"presentation": {
"reveal": "always"
},
"problemMatcher": [
"$gcc"
]
}
]
}
@Plisnak
Copy link

Plisnak commented Mar 13, 2019

this is very helpful but how do I change the name of the .exe file a what is in the launch.json?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment