Last active
December 9, 2019 05:35
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"terminal.integrated.shell.windows": "C:\\msys64\\usr\\bin\\bash.exe", | |
"terminal.integrated.shellArgs.windows": [ | |
"--login", | |
], | |
"terminal.integrated.env.windows": { | |
"CHERE_INVOKING": "1", | |
"MSYSTEM": "MINGW32", | |
}, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "build", | |
"type": "shell", | |
"command": "make -j8", | |
"presentation": { | |
"reveal": "always" | |
}, | |
"problemMatcher": [ | |
"$gcc" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this is very helpful but how do I change the name of the .exe file a what is in the launch.json?