mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-14 17:38:59 +00:00
ca5d3c8811
* Replace GTA_SWITCH macro with __SWITCH__ for platform specific stuff and GTA_HANDHELD for the rest (which could be used by other ports) * Use GAMEPAD_MENU on GTA_HANDHELD, which will replace the usual controller setup (which contains some useless features for handhelds) * Fix some identation inconsistencies * Disable PC_PLAYER_CONTROLS on GTA_HANDHELD builds
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "Mac",
|
|
"includePath": ["${default}"],
|
|
"defines": [],
|
|
"macFrameworkPath": [
|
|
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
|
|
],
|
|
"compilerPath": "/opt/local/bin/clang",
|
|
"compilerArgs": ["-g"],
|
|
"cStandard": "gnu11",
|
|
"cppStandard": "gnu++14",
|
|
"browse": {
|
|
"path": [
|
|
"/opt/local/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"
|
|
},
|
|
{
|
|
"name": "devkitPro aarch64 (Nintendo Switch)",
|
|
"compilerPath": "${env:DEVKITPRO}/devkitA64/bin/aarch64-none-elf-g++",
|
|
"includePath": [
|
|
"${default}",
|
|
"${env:DEVKITPRO}/portlibs/switch/include",
|
|
"${env:DEVKITPRO}/libnx/include"
|
|
],
|
|
"intelliSenseMode": "gcc-arm64",
|
|
"cStandard": "gnu11",
|
|
"cppStandard": "gnu++11",
|
|
"defines": [
|
|
"__SWITCH__",
|
|
"LIBRW",
|
|
"RW_GL3",
|
|
"AUDIO_OAL"
|
|
]
|
|
}
|
|
],
|
|
"version": 4
|
|
}
|