Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "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",
- "assets",
- "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
- }
Advertisement
Advertisement
Advertisement
RAW Paste Data
Copied
Advertisement