mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-22 18:15:14 +00:00
Revert "Add platform specific base presets"
This reverts commit a949a9f395
.
This commit is contained in:
parent
a949a9f395
commit
03e531cd3f
@ -7,18 +7,14 @@
|
|||||||
},
|
},
|
||||||
"configurePresets": [
|
"configurePresets": [
|
||||||
{
|
{
|
||||||
"name": "x64-Clang-Base-Windows",
|
"name": "x64-Clang-Base",
|
||||||
"hidden": true,
|
"hidden": true,
|
||||||
"condition": {
|
|
||||||
"type": "equals",
|
|
||||||
"lhs": "${hostSystemName}",
|
|
||||||
"rhs": "Windows"
|
|
||||||
},
|
|
||||||
"generator": "Ninja",
|
"generator": "Ninja",
|
||||||
"binaryDir": "${sourceDir}/Build/${presetName}",
|
"binaryDir": "${sourceDir}/Build/${presetName}",
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"CMAKE_C_COMPILER": "clang-cl",
|
"CMAKE_C_COMPILER": "clang-cl",
|
||||||
"CMAKE_CXX_COMPILER": "clang-cl"
|
"CMAKE_CXX_COMPILER": "clang-cl",
|
||||||
|
"CMAKE_INSTALL_PREFIX": "${sourceDir}/Build/${presetName}"
|
||||||
},
|
},
|
||||||
"vendor": {
|
"vendor": {
|
||||||
"microsoft.com/VisualStudioSettings/CMake/1.0": {
|
"microsoft.com/VisualStudioSettings/CMake/1.0": {
|
||||||
@ -26,26 +22,10 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "x64-Clang-Base-Linux",
|
|
||||||
"hidden": true,
|
|
||||||
"condition": {
|
|
||||||
"type": "equals",
|
|
||||||
"lhs": "${hostSystemName}",
|
|
||||||
"rhs": "Linux"
|
|
||||||
},
|
|
||||||
"generator": "Ninja",
|
|
||||||
"binaryDir": "${sourceDir}/Build/${presetName}",
|
|
||||||
"cacheVariables": {
|
|
||||||
"CMAKE_C_COMPILER": "clang",
|
|
||||||
"CMAKE_CXX_COMPILER": "clang++"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "x64-Clang-Debug",
|
"name": "x64-Clang-Debug",
|
||||||
"hidden": false,
|
|
||||||
"displayName": "Clang x64 Debug",
|
"displayName": "Clang x64 Debug",
|
||||||
"inherits": ["x64-Clang-Base-Linux", "x64-Clang-Base-Windows"],
|
"inherits": ["x64-Clang-Base"],
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"CMAKE_BUILD_TYPE": "Debug"
|
"CMAKE_BUILD_TYPE": "Debug"
|
||||||
}
|
}
|
||||||
@ -53,7 +33,7 @@
|
|||||||
{
|
{
|
||||||
"name": "x64-Clang-Debug-Qt",
|
"name": "x64-Clang-Debug-Qt",
|
||||||
"displayName": "Clang x64 Debug with Qt",
|
"displayName": "Clang x64 Debug with Qt",
|
||||||
"inherits": ["x64-Clang-Base-Linux", "x64-Clang-Base-Windows"],
|
"inherits": ["x64-Clang-Base"],
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"CMAKE_BUILD_TYPE": "Debug",
|
"CMAKE_BUILD_TYPE": "Debug",
|
||||||
"ENABLE_QT_GUI": "ON"
|
"ENABLE_QT_GUI": "ON"
|
||||||
@ -62,7 +42,7 @@
|
|||||||
{
|
{
|
||||||
"name": "x64-Clang-Release",
|
"name": "x64-Clang-Release",
|
||||||
"displayName": "Clang x64 Release",
|
"displayName": "Clang x64 Release",
|
||||||
"inherits": ["x64-Clang-Base-Linux", "x64-Clang-Base-Windows"],
|
"inherits": ["x64-Clang-Base"],
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"CMAKE_BUILD_TYPE": "Release"
|
"CMAKE_BUILD_TYPE": "Release"
|
||||||
}
|
}
|
||||||
@ -70,7 +50,7 @@
|
|||||||
{
|
{
|
||||||
"name": "x64-Clang-Release-Qt",
|
"name": "x64-Clang-Release-Qt",
|
||||||
"displayName": "Clang x64 Release with Qt",
|
"displayName": "Clang x64 Release with Qt",
|
||||||
"inherits": ["x64-Clang-Base-Linux", "x64-Clang-Base-Windows"],
|
"inherits": ["x64-Clang-Base"],
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"CMAKE_BUILD_TYPE": "Release",
|
"CMAKE_BUILD_TYPE": "Release",
|
||||||
"ENABLE_QT_GUI": "ON"
|
"ENABLE_QT_GUI": "ON"
|
||||||
@ -79,7 +59,7 @@
|
|||||||
{
|
{
|
||||||
"name": "x64-Clang-RelWithDebInfo",
|
"name": "x64-Clang-RelWithDebInfo",
|
||||||
"displayName": "Clang x64 RelWithDebInfo",
|
"displayName": "Clang x64 RelWithDebInfo",
|
||||||
"inherits": ["x64-Clang-Base-Linux", "x64-Clang-Base-Windows"],
|
"inherits": ["x64-Clang-Base"],
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
|
||||||
}
|
}
|
||||||
@ -87,7 +67,7 @@
|
|||||||
{
|
{
|
||||||
"name": "x64-Clang-RelWithDebInfo-Qt",
|
"name": "x64-Clang-RelWithDebInfo-Qt",
|
||||||
"displayName": "Clang x64 RelWithDebInfo with Qt",
|
"displayName": "Clang x64 RelWithDebInfo with Qt",
|
||||||
"inherits": ["x64-Clang-Base-Linux", "x64-Clang-Base-Windows"],
|
"inherits": ["x64-Clang-Base"],
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
|
||||||
"ENABLE_QT_GUI": "ON"
|
"ENABLE_QT_GUI": "ON"
|
||||||
|
Loading…
Reference in New Issue
Block a user