Skip to content

Instantly share code, notes, and snippets.

@h1romas4
Created December 19, 2022 05:53
Show Gist options
  • Save h1romas4/665513162a1407a26e79babaa815cece to your computer and use it in GitHub Desktop.
Save h1romas4/665513162a1407a26e79babaa815cece to your computer and use it in GitHub Desktop.
VS Code C/C++ setting for MAME
{
"configurations": [
{
"name": "Linux",
"intelliSenseMode": "gcc-x64",
"cStandard": "c11",
"cppStandard": "c++17",
"includePath": [
"${workspaceFolder}/src/**",
"${workspaceFolder}/3rdparty/**",
"${workspaceFolder}/build/generated/**"
],
"defines": [
"SDLMAME_UNIX=1"
],
"compilerPath": "/usr/bin/gcc"
}
],
"version": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment