mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 05:27:19 +00:00
rename gcc to gnu
This commit is contained in:
parent
d6e4edd886
commit
aa62d357bb
@ -33,9 +33,9 @@
|
|||||||
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-clang.cmake"
|
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-clang.cmake"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gcc-config",
|
"name": "gnu-config",
|
||||||
"hidden": true,
|
"hidden": true,
|
||||||
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-gcc.cmake"
|
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-gnu.cmake"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "windows-msvc",
|
"name": "windows-msvc",
|
||||||
@ -112,23 +112,23 @@
|
|||||||
"description": "Create a release build using the Clang toolchain for Linux"
|
"description": "Create a release build using the Clang toolchain for Linux"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-gcc-debug",
|
"name": "linux-gnu-debug",
|
||||||
"inherits": [
|
"inherits": [
|
||||||
"linux-config",
|
"linux-config",
|
||||||
"gcc-config",
|
"gnu-config",
|
||||||
"debug-config"
|
"debug-config"
|
||||||
],
|
],
|
||||||
"displayName": "[Debug] Linux (GCC)",
|
"displayName": "[Debug] Linux (GNU)",
|
||||||
"description": "Create a debug build using the GNU toolchain for Linux"
|
"description": "Create a debug build using the GNU toolchain for Linux"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-gcc-release",
|
"name": "linux-gnu-release",
|
||||||
"inherits": [
|
"inherits": [
|
||||||
"linux-config",
|
"linux-config",
|
||||||
"gcc-config",
|
"gnu-config",
|
||||||
"release-config"
|
"release-config"
|
||||||
],
|
],
|
||||||
"displayName": "[Release] Linux (GCC)",
|
"displayName": "[Release] Linux (GNU)",
|
||||||
"description": "Create a release build using the GNU toolchain for Linux"
|
"description": "Create a release build using the GNU toolchain for Linux"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -191,18 +191,18 @@
|
|||||||
"jobs": 2
|
"jobs": 2
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-gcc-debug",
|
"name": "linux-gnu-debug",
|
||||||
"configurePreset": "linux-gcc-debug",
|
"configurePreset": "linux-gnu-debug",
|
||||||
"displayName": "[Debug] Linux (GCC)",
|
"displayName": "[Debug] Linux (GNU)",
|
||||||
"description": "This preset is used to build in debug mode using the GCC toolchain on Linux",
|
"description": "This preset is used to build in debug mode using the GNU toolchain on Linux",
|
||||||
"configuration": "Debug",
|
"configuration": "Debug",
|
||||||
"jobs": 2
|
"jobs": 2
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-gcc-release",
|
"name": "linux-gnu-release",
|
||||||
"configurePreset": "linux-gcc-release",
|
"configurePreset": "linux-gnu-release",
|
||||||
"displayName": "[Release] Linux (GCC)",
|
"displayName": "[Release] Linux (GNU)",
|
||||||
"description": "This preset is used to build in release mode using the GCC toolchain on Linux",
|
"description": "This preset is used to build in release mode using the GNU toolchain on Linux",
|
||||||
"configuration": "Release",
|
"configuration": "Release",
|
||||||
"jobs": 2
|
"jobs": 2
|
||||||
},
|
},
|
||||||
@ -262,19 +262,19 @@
|
|||||||
"configuration": "Release"
|
"configuration": "Release"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-gcc-debug",
|
"name": "linux-gnu-debug",
|
||||||
"inherits": "default",
|
"inherits": "default",
|
||||||
"configurePreset": "linux-gcc-debug",
|
"configurePreset": "linux-gnu-debug",
|
||||||
"displayName": "[Debug] Linux (GCC)",
|
"displayName": "[Debug] Linux (GNU)",
|
||||||
"description": "Runs all tests on a Linux GCC configuration",
|
"description": "Runs all tests on a Linux GNU configuration",
|
||||||
"configuration": "Release"
|
"configuration": "Release"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-gcc-release",
|
"name": "linux-gnu-release",
|
||||||
"inherits": "default",
|
"inherits": "default",
|
||||||
"configurePreset": "linux-gcc-release",
|
"configurePreset": "linux-gnu-release",
|
||||||
"displayName": "[Release] Linux (GCC)",
|
"displayName": "[Release] Linux (GNU)",
|
||||||
"description": "Runs all tests on a Linux GCC configuration",
|
"description": "Runs all tests on a Linux GNU configuration",
|
||||||
"configuration": "Release"
|
"configuration": "Release"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -338,15 +338,15 @@
|
|||||||
"steps": [
|
"steps": [
|
||||||
{
|
{
|
||||||
"type": "configure",
|
"type": "configure",
|
||||||
"name": "linux-gcc-release"
|
"name": "linux-gnu-release"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "build",
|
"type": "build",
|
||||||
"name": "linux-gcc-release"
|
"name": "linux-gnu-release"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "test",
|
"type": "test",
|
||||||
"name": "linux-gcc-release"
|
"name": "linux-gnu-release"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user