mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 02:19:01 +00:00
.vscode/c_cpp_properties: add Linux configuration
This commit is contained in:
parent
9250b36431
commit
53f6c6f8e9
1 changed files with 10 additions and 8 deletions
18
.vscode/c_cpp_properties.json
vendored
18
.vscode/c_cpp_properties.json
vendored
|
@ -2,14 +2,7 @@
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "Mac",
|
"name": "Mac",
|
||||||
"includePath": [
|
"includePath": ["${default}"],
|
||||||
"${default}",
|
|
||||||
"src/fakerw",
|
|
||||||
"src/math",
|
|
||||||
"src/render",
|
|
||||||
"src/skel",
|
|
||||||
"vendor/librw"
|
|
||||||
],
|
|
||||||
"defines": [],
|
"defines": [],
|
||||||
"macFrameworkPath": [
|
"macFrameworkPath": [
|
||||||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
|
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
|
||||||
|
@ -24,6 +17,15 @@
|
||||||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include"
|
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Linux",
|
||||||
|
"includePath": ["${default}"],
|
||||||
|
"defines": ["XDG_ROOT"],
|
||||||
|
"compilerPath": "/usr/bin/gcc",
|
||||||
|
"compilerArgs": ["-ggdb"],
|
||||||
|
"cStandard": "gnu11",
|
||||||
|
"cppStandard": "gnu++14"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": 4
|
"version": 4
|
||||||
|
|
Loading…
Reference in a new issue