1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
"version": 4,
"configurations": [
{
"name": "Voxelius",
"cppStandard": "c++17", "cStandard": "c99",
"defines": [
"GLFW_INCLUDE_NONE",
"MINIZ_NO_STDIO", "MINIZ_NO_ZLIB_COMPATIBLE_NAMES",
"NOMINMAX", "_CRT_SECURE_NO_WARNINGS", "_USE_MATH_DEFINES",
"VLAUNCH_CLIENT", "VLAUNCH_SERVER"
],
"includePath": [
"${workspaceFolder}/deps/include/",
"${workspaceFolder}/game/",
"${workspaceFolder}",
"${default}"
]
}
]
}
|