mirror of
https://github.com/FEX-Emu/FEX.git
synced 2024-11-23 06:30:01 +00:00
132 lines
3.5 KiB
JSON
132 lines
3.5 KiB
JSON
{
|
|
"environments": [
|
|
{
|
|
"BuildPath": "${projectDir}\\out\\build\\${name}",
|
|
"InstallPath": "${projectDir}\\out\\install\\${name}",
|
|
"clangcl": "clang-cl.exe",
|
|
"cc": "clang",
|
|
"cxx": "clang++"
|
|
}
|
|
],
|
|
"configurations": [
|
|
{
|
|
"name": "WSL-Clang-Debug",
|
|
"generator": "Ninja",
|
|
"configurationType": "Debug",
|
|
"buildRoot": "${env.BuildPath}",
|
|
"installRoot": "${env.InstallPath}",
|
|
"cmakeExecutable": "/usr/bin/cmake",
|
|
"cmakeCommandArgs": "",
|
|
"buildCommandArgs": "-v",
|
|
"ctestCommandArgs": "",
|
|
"wslPath": "${defaultWSLPath}",
|
|
"inheritEnvironments": [ "linux_clang_x64" ],
|
|
"addressSanitizerRuntimeFlags": "detect_leaks=0",
|
|
"variables": [
|
|
{
|
|
"name": "WSL",
|
|
"value": "TRUE",
|
|
"type": "BOOL"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "WSL-Clang-Release",
|
|
"generator": "Ninja",
|
|
"configurationType": "RelWithDebInfo",
|
|
"buildRoot": "${env.BuildPath}",
|
|
"installRoot": "${env.InstallPath}",
|
|
"cmakeExecutable": "/usr/bin/cmake",
|
|
"cmakeCommandArgs": "",
|
|
"buildCommandArgs": "-v",
|
|
"ctestCommandArgs": "",
|
|
"wslPath": "${defaultWSLPath}",
|
|
"inheritEnvironments": [ "linux_clang_x64" ],
|
|
"addressSanitizerRuntimeFlags": "detect_leaks=0",
|
|
"variables": [
|
|
{
|
|
"name": "WSL",
|
|
"value": "TRUE",
|
|
"type": "BOOL"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "x86-Clang-Cross-Debug",
|
|
"generator": "Ninja",
|
|
"configurationType": "Debug",
|
|
"buildRoot": "${env.BuildPath}",
|
|
"installRoot": "${env.InstallPath}",
|
|
"cmakeCommandArgs": "",
|
|
"buildCommandArgs": "-v",
|
|
"ctestCommandArgs": "",
|
|
"inheritEnvironments": [ "clang_cl_x86" ],
|
|
"variables": [
|
|
{
|
|
"name": "CMAKE_C_COMPILER",
|
|
"value": "${env.cc}",
|
|
"type": "STRING"
|
|
},
|
|
{
|
|
"name": "CMAKE_CXX_COMPILER",
|
|
"value": "${env.cxx}",
|
|
"type": "STRING"
|
|
},
|
|
{
|
|
"name": "CMAKE_SYSROOT",
|
|
"value": "${env.fexsysroot}",
|
|
"type": "STRING"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "x64-Clang-Cross-Release",
|
|
"generator": "Ninja",
|
|
"configurationType": "RelWithDebInfo",
|
|
"buildRoot": "${env.BuildPath}",
|
|
"installRoot": "${env.InstallPath}",
|
|
"cmakeCommandArgs": "",
|
|
"buildCommandArgs": "-v",
|
|
"ctestCommandArgs": "",
|
|
"inheritEnvironments": [ "clang_cl_x86" ],
|
|
"variables": [
|
|
{
|
|
"name": "CMAKE_C_COMPILER",
|
|
"value": "${env.cc}",
|
|
"type": "STRING"
|
|
},
|
|
{
|
|
"name": "CMAKE_CXX_COMPILER",
|
|
"value": "${env.cxx}",
|
|
"type": "STRING"
|
|
},
|
|
{
|
|
"name": "CMAKE_SYSROOT",
|
|
"value": "${env.fexsysroot}",
|
|
"type": "STRING"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "Linux-Clang-Remote-Debug",
|
|
"generator": "Ninja",
|
|
"configurationType": "Debug",
|
|
"cmakeExecutable": "/usr/bin/cmake",
|
|
"remoteCopySourcesExclusionList": [ ".vs", ".vscode", ".git", ".github", "build", "out", "bin" ],
|
|
"cmakeCommandArgs": "",
|
|
"buildCommandArgs": "-v",
|
|
"ctestCommandArgs": "",
|
|
"inheritEnvironments": [ "linux_clang_x64" ],
|
|
"remoteMachineName": "${env.fexremote}",
|
|
"remoteCMakeListsRoot": "$HOME/projects/.vs/${projectDirName}/src",
|
|
"remoteBuildRoot": "$HOME/projects/.vs/${projectDirName}/build/${name}",
|
|
"remoteInstallRoot": "$HOME/projects/.vs/${projectDirName}/install/${name}",
|
|
"remoteCopySources": true,
|
|
"rsyncCommandArgs": "-t --delete --delete-excluded",
|
|
"remoteCopyBuildOutput": false,
|
|
"remoteCopySourcesMethod": "rsync",
|
|
"addressSanitizerRuntimeFlags": "detect_leaks=0",
|
|
"variables": []
|
|
}
|
|
]
|
|
} |