1
0
mirror of https://github.com/krustur/IconSnap.git synced 2025-11-20 08:19:39 +00:00
This commit is contained in:
Krister Jansson
2018-11-20 23:32:14 +01:00
parent ac91fd922e
commit 3cf17ef328
10 changed files with 406 additions and 3 deletions

23
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,23 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**",
"E:/Amiga/KrustWB3/Output/Dev/SDK/NDK_3.9/Include/include_h",
"E:/Amiga/KrustWB3/Output/Dev/vbcc_posix/targets/m68k-amigaos/include"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.16299.0",
"compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/VC/Tools/MSVC/14.11.25503/bin/Hostx64/x64/cl.exe",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "msvc-x64"
}
],
"version": 4
}

23
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,23 @@
{
"files.associations": {
"*.s": "m68k",
"startup.h": "c",
"types.h": "c",
"dos.h": "c",
"workbench.h": "c",
"tasks.h": "c",
"lists.h": "c",
"icon.h": "c",
"icon_pragmas.h": "c",
"icon_protos.h": "c",
"icon_lib.h": "c",
"exec_protos.h": "c",
"dos_pragmas.h": "c",
"dos_protos.h": "c",
"exec.h": "c",
"exec_pragmas.h": "c",
"dirent.h": "c",
"unistd.h": "c"
},
"C_Cpp.intelliSenseEngineFallback": "Disabled"
}