summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Udvare <audvare@gmail.com>2020-10-09 08:01:46 +0200
committerAndrew Udvare <audvare@gmail.com>2020-10-09 08:01:46 +0200
commit53f6c6f8e9b374a3da04ad3b8faea2e8fdafb756 (patch)
tree093d9045bdc0e38846b9776f872016e84f569586
parentvscode: add macOS configurations (diff)
downloadre3-53f6c6f8e9b374a3da04ad3b8faea2e8fdafb756.tar
re3-53f6c6f8e9b374a3da04ad3b8faea2e8fdafb756.tar.gz
re3-53f6c6f8e9b374a3da04ad3b8faea2e8fdafb756.tar.bz2
re3-53f6c6f8e9b374a3da04ad3b8faea2e8fdafb756.tar.lz
re3-53f6c6f8e9b374a3da04ad3b8faea2e8fdafb756.tar.xz
re3-53f6c6f8e9b374a3da04ad3b8faea2e8fdafb756.tar.zst
re3-53f6c6f8e9b374a3da04ad3b8faea2e8fdafb756.zip
-rw-r--r--.vscode/c_cpp_properties.json18
1 files changed, 10 insertions, 8 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json
index f284b5eb..327d8cc7 100644
--- a/.vscode/c_cpp_properties.json
+++ b/.vscode/c_cpp_properties.json
@@ -2,14 +2,7 @@
"configurations": [
{
"name": "Mac",
- "includePath": [
- "${default}",
- "src/fakerw",
- "src/math",
- "src/render",
- "src/skel",
- "vendor/librw"
- ],
+ "includePath": ["${default}"],
"defines": [],
"macFrameworkPath": [
"/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"
]
}
+ },
+ {
+ "name": "Linux",
+ "includePath": ["${default}"],
+ "defines": ["XDG_ROOT"],
+ "compilerPath": "/usr/bin/gcc",
+ "compilerArgs": ["-ggdb"],
+ "cStandard": "gnu11",
+ "cppStandard": "gnu++14"
}
],
"version": 4