Skip to content
Snippets Groups Projects
Commit 2e4a56eb authored by BG Dummy's avatar BG Dummy
Browse files

added .vscode

parent 1bd700de
No related branches found
No related tags found
No related merge requests found
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Make",
"command": "/usr/bin/make",
"args": [
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": "build"
},
{
"type": "shell",
"label": "C/C++: cl.exe build active file",
"command": "cl.exe",
"args": [
"/std:c++17",
"/Zi",
"/EHsc",
"/Fe:",
"${fileDirname}\\${fileBasenameNoExtension}.exe",
"${file}"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$msCompile"
],
"group": "build"
}
]
}
\ No newline at end of file
......@@ -137,12 +137,9 @@ uwe::Image MyApp::render_text(std::string msg) {
}
int main(int argc, char *argv[]) {
//SDL_SetMainReady();
uwe::App* app = new MyApp{width, height, "Shapes Example"};
std::cout << "here 2" << std::endl;
//app->dump_renderer_info();
app->run();
return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment