-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
90342b6
commit 373a4d3
Showing
3 changed files
with
79 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,106 +1,117 @@ | ||
{ | ||
"version": 3, | ||
"version": 6, | ||
"configurePresets": [ | ||
{ | ||
"name": "base", | ||
"hidden": true, | ||
"binaryDir": "${sourceDir}/build-${presetName}", | ||
"installDir": "${sourceDir}/install-${presetName}" | ||
}, | ||
{ | ||
"name": "windows-base", | ||
"name": "linux-base", | ||
"displayName": "Linux x64 Debug", | ||
"hidden": true, | ||
"inherits": "base", | ||
"generator": "Ninja", | ||
"cacheVariables": { | ||
"CMAKE_C_COMPILER": "cl.exe", | ||
"CMAKE_CXX_COMPILER": "cl.exe" | ||
"condition": { | ||
"type": "equals", | ||
"lhs": "${hostSystemName}", | ||
"rhs": "Linux" | ||
}, | ||
"generator": "Unix Makefiles", | ||
"binaryDir": "${sourceDir}/build/${presetName}", | ||
"installDir": "${sourceDir}/build/install/${presetName}", | ||
"architecture": { | ||
"value": "x64", | ||
"strategy": "external" | ||
}, | ||
"condition": { | ||
"type": "equals", | ||
"lhs": "${hostSystemName}", | ||
"rhs": "Windows" | ||
} | ||
}, | ||
{ | ||
"name": "msvc-debug", | ||
"displayName": "MSVC Debug", | ||
"inherits": "windows-base", | ||
"name": "linux-debug", | ||
"displayName": "Linux x64 Debug", | ||
"inherits": "linux-base", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug" | ||
} | ||
}, | ||
{ | ||
"name": "msvc-release", | ||
"displayName": "MSVC Release", | ||
"inherits": "windows-base", | ||
"name": "linux-release", | ||
"displayName": "Linux x64 Release", | ||
"inherits": "linux-base", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Release" | ||
} | ||
}, | ||
{ | ||
"name": "linux-base", | ||
"name": "windows-base", | ||
"hidden": true, | ||
"inherits": "base", | ||
"generator": "Unix Makefiles", | ||
"cacheVariables": { | ||
"CMAKE_C_COMPILER": "gcc", | ||
"CMAKE_CXX_COMPILER": "g++" | ||
}, | ||
"condition": { | ||
"type": "equals", | ||
"lhs": "${hostSystemName}", | ||
"rhs": "Linux" | ||
"rhs": "Windows" | ||
}, | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/build/${presetName}", | ||
"installDir": "${sourceDir}/build/install/${presetName}", | ||
"cacheVariables": { | ||
"CMAKE_C_COMPILER": "cl.exe", | ||
"CMAKE_CXX_COMPILER": "cl.exe" | ||
}, | ||
"architecture": { | ||
"value": "x64", | ||
"strategy": "external" | ||
} | ||
}, | ||
{ | ||
"name": "linux-debug", | ||
"displayName": "Linux Debug", | ||
"inherits": "linux-base", | ||
"name": "msvc-debug", | ||
"displayName": "MSVC Debug", | ||
"inherits": "windows-base", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug" | ||
} | ||
}, | ||
{ | ||
"name": "linux-release", | ||
"displayName": "Linux Release", | ||
"inherits": "linux-base", | ||
"name": "msvc-release", | ||
"displayName": "MSVC Release", | ||
"inherits": "windows-base", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Release" | ||
} | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "linux-build-base", | ||
"hidden": true, | ||
"configurePreset": "linux-release" | ||
"name": "build-linux-base", | ||
"hidden": true | ||
}, | ||
{ | ||
"name": "linux-build-release", | ||
"displayName": "Build Release", | ||
"inherits": "linux-build-base", | ||
"configurePreset": "linux-release" | ||
"name": "build-linux-debug", | ||
"displayName": "Build Linux Debug", | ||
"inherits": "build-linux-base", | ||
"configurePreset": "linux-debug" | ||
}, | ||
{ | ||
"name": "build-linux-release", | ||
"displayName": "Build Linux Release", | ||
"inherits": "build-linux-base", | ||
"configurePreset": "linux-release" | ||
}, | ||
{ | ||
"name": "msvc-build-base", | ||
"name": "build-msvc-base", | ||
"hidden": true | ||
}, | ||
{ | ||
"name": "msvc-build-release", | ||
"displayName": "Build MSVC Release", | ||
"inherits": "msvc-build-base", | ||
"configurePreset": "msvc-release" | ||
"name": "build-msvc-release", | ||
"displayName": "Build MSVC Release", | ||
"inherits": "build-msvc-base", | ||
"configurePreset": "msvc-release" | ||
}, | ||
{ | ||
"name": "msvc-build-debug", | ||
"displayName": "Build MSVC Debug", | ||
"inherits": "msvc-build-base", | ||
"configurePreset": "msvc-debug" | ||
"name": "build-msvc-debug", | ||
"displayName": "Build MSVC Debug", | ||
"inherits": "build-msvc-base", | ||
"configurePreset": "msvc-debug" | ||
} | ||
] | ||
], | ||
"packagePresets": [ | ||
{ | ||
"name": "deb-package-release", | ||
"configurePreset": "linux-release", | ||
"generators": [ | ||
"DEB" | ||
] | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.