Initial Commint & VSCode Task Configurations
This commit is contained in:
parent
3665e4b098
commit
85a7a090b5
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"files.associations": {
|
||||||
|
"iostream": "cpp"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"type": "shell",
|
||||||
|
"label": "Build And Run Game",
|
||||||
|
"command": "C:\\MinGW\\bin\\g++.exe",
|
||||||
|
"args": [
|
||||||
|
"-g",
|
||||||
|
"${workspaceFolder}\\main.cpp",
|
||||||
|
"-o",
|
||||||
|
"${workspaceFolder}\\main.exe",
|
||||||
|
"${workspaceFolder}\\SFML\\*.a",
|
||||||
|
"&&",
|
||||||
|
"${workspaceFolder}\\main.exe"
|
||||||
|
],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": [
|
||||||
|
"$gcc"
|
||||||
|
],
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
#ifndef Engine
|
||||||
|
#define Engine
|
||||||
|
#include <iostream>
|
||||||
|
#endif
|
Loading…
Reference in New Issue