Skip to content
Permalink
Browse files
first commit
  • Loading branch information
infval committed Apr 29, 2018
0 parents commit dc3b12d32c692a919f01a61013e2ed04b3692aef
@@ -0,0 +1,2 @@
/out
#/src/boot
@@ -0,0 +1,27 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${GDK}/inc",
"${GDK}/res",
"inc",
"res"
],
"browse": {
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": "",
"path": [
"${GDK}/inc",
"${GDK}/res",
"inc",
"res"
]
},
"intelliSenseMode": "msvc-x64",
"cStandard": "c11",
"cppStandard": "c++17"
}
],
"version": 3
}
@@ -0,0 +1,30 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "cmd",
"isShellCommand": true,
"args": ["/C"],
"showOutput": "always",
"tasks": [
{
"isBuildCommand": true,
"suppressTaskName": true,
"echoCommand": true,
"taskName": "make",
"args": [
"${env:GDK}\\bin\\make", "-f", "${env:GDK}\\makefile.gen"
]

},
{
"suppressTaskName": true,
"echoCommand": true,
"taskName": "clean",
"args": [
"${env:GDK}\\bin\\make", "clean", "-f", "${env:GDK}\\makefile.gen"
]

}
]
}
@@ -0,0 +1,4 @@
%GDK_WIN%\bin\make -f %GDK_WIN%\makefile.gen clean

@ECHO -------------------------------------------
@PAUSE >nul
@@ -0,0 +1,4 @@
%GDK_WIN%\bin\make -f %GDK_WIN%\makefile.gen

@ECHO -------------------------------------------
@PAUSE >nul

0 comments on commit dc3b12d

Please sign in to comment.