mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-12 04:31:29 -06:00
Some checks are pending
Build and Release / reuse (push) Waiting to run
Build and Release / clang-format (push) Waiting to run
Build and Release / get-info (push) Waiting to run
Build and Release / windows-sdl (push) Blocked by required conditions
Build and Release / macos-sdl (push) Blocked by required conditions
Build and Release / linux-sdl (push) Blocked by required conditions
Build and Release / linux-sdl-gcc (push) Blocked by required conditions
Build and Release / pre-release (push) Blocked by required conditions
* Docker builder support * update licenses * oops I forgot change this description
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
// SPDX-FileCopyrightText: 2026 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
{
|
|
"name": "shadPS4-dev",
|
|
"dockerComposeFile": [
|
|
"../docker-compose.yml"
|
|
],
|
|
"containerEnv": {
|
|
"GITHUB_TOKEN": "${localEnv:GITHUB_TOKEN}",
|
|
"GITHUB_USER": "${localEnv:GITHUB_USER}"
|
|
},
|
|
"service": "shadps4",
|
|
"workspaceFolder": "/workspaces/shadPS4",
|
|
"remoteUser": "root",
|
|
"shutdownAction": "none",
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"llvm-vs-code-extensions.vscode-clangd"
|
|
],
|
|
"settings": {
|
|
"C_Cpp.intelliSenseEngine": "disabled",
|
|
"clangd.arguments": [
|
|
"--background-index",
|
|
"--clang-tidy",
|
|
"--completion-style=detailed",
|
|
"--header-insertion=never"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"settings": {
|
|
"cmake.configureOnOpen": false,
|
|
"cmake.generator": "Unix Makefiles",
|
|
"cmake.environment": {
|
|
"CC": "clang",
|
|
"CXX": "clang++"
|
|
},
|
|
"cmake.configureSettings": {
|
|
"CMAKE_CXX_STANDARD": "23",
|
|
"CMAKE_CXX_STANDARD_REQUIRED": "ON"
|
|
}
|
|
}
|
|
} |