early dev sync

This commit is contained in:
Yanis42
2023-10-13 19:13:37 +02:00
parent bbb1237cc8
commit 281fd4dc21
2 changed files with 24 additions and 1 deletions

1
.gitignore vendored
View File

@@ -4,7 +4,6 @@ __pycache__/
.DS_Store
# Text editor remnants
.vscode/
.vs/
.idea/
CMakeLists.txt

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

@@ -0,0 +1,24 @@
{
"configurations": [
{
"name": "Linux",
"compilerPath": "${default}", // Needs to not be "" for -m32 to work
"compilerArgs": [
"-m32" // Removes integer truncation warnings with gbi macros
],
"intelliSenseMode": "${default}", // Shouldn't matter
"includePath": [ // Matches makefile's includes
"${workspaceFolder}/**",
"src",
"build",
"include"
],
"defines": [
"_LANGUAGE_C" // For gbi.h
],
"cStandard": "gnu89", // C89 + some GNU extensions from C99 like C++ comments
"cppStandard": "${default}" // Only ZAPD uses C++, so doesn't really matter
}
],
"version": 4
}