2022-05-26 07:55:20 +02:00
|
|
|
{
|
|
|
|
"version": 2,
|
|
|
|
"configurePresets": [
|
|
|
|
{
|
2022-08-09 12:35:05 +02:00
|
|
|
"name": "release-binary-dir",
|
|
|
|
"hidden": true,
|
|
|
|
"binaryDir": "${sourceDir}/out/build/${presetName}"
|
|
|
|
},
|
2022-10-13 12:09:15 +02:00
|
|
|
{
|
|
|
|
"name": "build-with-conan",
|
|
|
|
"hidden": true,
|
|
|
|
"cacheVariables": {
|
|
|
|
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/conan-generated/conan_toolchain.cmake",
|
|
|
|
"FORCE_BUNDLED_MINIZIP": "OFF"
|
|
|
|
}
|
|
|
|
},
|
2022-08-09 12:35:05 +02:00
|
|
|
{
|
|
|
|
"name": "base-release",
|
|
|
|
"inherits": "release-binary-dir",
|
2022-05-26 07:55:20 +02:00
|
|
|
"hidden": true,
|
|
|
|
"cacheVariables": {
|
|
|
|
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
|
|
|
|
"PACKAGE_FILE_NAME" : "$env{VCMI_PACKAGE_FILE_NAME}",
|
|
|
|
"PACKAGE_NAME_SUFFIX" : "$env{VCMI_PACKAGE_NAME_SUFFIX}",
|
|
|
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
|
2022-12-23 10:10:05 +02:00
|
|
|
"ENABLE_TEST": "OFF",
|
2022-12-30 14:59:07 +02:00
|
|
|
"ENABLE_STRICT_COMPILATION": "ON",
|
2024-04-25 17:52:25 +02:00
|
|
|
"ENABLE_GOLDMASTER": "$env{VCMI_PACKAGE_GOLDMASTER}",
|
2023-09-29 23:55:12 +02:00
|
|
|
"ENABLE_PCH" : "OFF"
|
2022-05-26 07:55:20 +02:00
|
|
|
}
|
|
|
|
},
|
2022-08-09 12:35:05 +02:00
|
|
|
{
|
|
|
|
"name": "default-release",
|
|
|
|
"inherits": "base-release",
|
|
|
|
"hidden": true,
|
|
|
|
"generator": "Ninja",
|
|
|
|
"cacheVariables": {
|
|
|
|
"FORCE_BUNDLED_FL": "OFF"
|
|
|
|
}
|
|
|
|
},
|
2022-05-28 13:32:54 +02:00
|
|
|
{
|
|
|
|
"name" : "linux-release",
|
|
|
|
"inherits" : "default-release",
|
|
|
|
"hidden": true,
|
|
|
|
"cacheVariables": {
|
|
|
|
"CMAKE_INSTALL_PREFIX" : "/usr/local"
|
|
|
|
}
|
|
|
|
},
|
2023-03-01 16:26:59 +02:00
|
|
|
{
|
|
|
|
"name": "linux-test",
|
|
|
|
"inherits": "linux-release",
|
|
|
|
"hidden": true,
|
|
|
|
"cacheVariables": {
|
2024-02-13 22:20:30 +02:00
|
|
|
"ENABLE_LOBBY": "ON",
|
2024-04-22 09:26:05 +02:00
|
|
|
"ENABLE_TEST": "ON",
|
2023-03-01 16:26:59 +02:00
|
|
|
"ENABLE_LUA": "ON"
|
|
|
|
}
|
|
|
|
},
|
2022-05-26 07:55:20 +02:00
|
|
|
{
|
|
|
|
"name": "linux-clang-release",
|
|
|
|
"displayName": "Clang x86_64-pc-linux-gnu",
|
|
|
|
"description": "VCMI Linux Clang",
|
2022-05-28 13:32:54 +02:00
|
|
|
"inherits": "linux-release",
|
2022-05-26 07:55:20 +02:00
|
|
|
"cacheVariables": {
|
|
|
|
"CMAKE_C_COMPILER": "/usr/bin/clang",
|
|
|
|
"CMAKE_CXX_COMPILER": "/usr/bin/clang++"
|
|
|
|
}
|
|
|
|
},
|
2023-12-27 22:14:00 +02:00
|
|
|
{
|
|
|
|
"name": "linux-clang-release-ccache",
|
|
|
|
"displayName": "Clang x86_64-pc-linux-gnu with ccache",
|
|
|
|
"description": "VCMI Linux Clang with ccache",
|
|
|
|
"inherits": "linux-release",
|
|
|
|
"cacheVariables": {
|
|
|
|
"ENABLE_CCACHE": "ON"
|
|
|
|
}
|
|
|
|
},
|
2022-05-26 07:55:20 +02:00
|
|
|
{
|
|
|
|
"name": "linux-gcc-release",
|
|
|
|
"displayName": "GCC x86_64-pc-linux-gnu",
|
|
|
|
"description": "VCMI Linux GCC",
|
2022-05-28 13:32:54 +02:00
|
|
|
"inherits": "linux-release",
|
2022-05-26 07:55:20 +02:00
|
|
|
"cacheVariables": {
|
2023-07-11 14:30:45 +02:00
|
|
|
"ENABLE_LUA" : "ON",
|
|
|
|
"CMAKE_C_COMPILER": "/usr/bin/gcc",
|
|
|
|
"CMAKE_CXX_COMPILER": "/usr/bin/g++"
|
|
|
|
}
|
|
|
|
},
|
2023-12-27 22:14:00 +02:00
|
|
|
{
|
|
|
|
"name": "linux-gcc-release-ccache",
|
|
|
|
"displayName": "GCC x86_64-pc-linux-gnu with ccache",
|
|
|
|
"description": "VCMI Linux GCC with ccache",
|
|
|
|
"inherits": "linux-release",
|
|
|
|
"cacheVariables": {
|
|
|
|
"ENABLE_CCACHE": "ON"
|
|
|
|
}
|
|
|
|
},
|
2023-07-11 14:30:45 +02:00
|
|
|
{
|
|
|
|
"name": "linux-gcc-debug",
|
|
|
|
"displayName": "GCC x86_64-pc-linux-gnu (debug)",
|
|
|
|
"description": "VCMI Linux GCC (Debug)",
|
|
|
|
"inherits": "linux-release",
|
|
|
|
"cacheVariables": {
|
|
|
|
"CMAKE_BUILD_TYPE": "Debug",
|
2023-04-07 13:52:28 +02:00
|
|
|
"ENABLE_LUA" : "ON",
|
2022-05-26 07:55:20 +02:00
|
|
|
"CMAKE_C_COMPILER": "/usr/bin/gcc",
|
|
|
|
"CMAKE_CXX_COMPILER": "/usr/bin/g++"
|
|
|
|
}
|
|
|
|
},
|
2023-03-01 16:26:59 +02:00
|
|
|
{
|
|
|
|
"name": "linux-clang-test",
|
|
|
|
"displayName": "Clang x86_64-pc-linux-gnu with unit testing",
|
|
|
|
"description": "VCMI Linux Clang",
|
|
|
|
"inherits": "linux-test",
|
|
|
|
"cacheVariables": {
|
|
|
|
"CMAKE_C_COMPILER": "/usr/bin/clang",
|
|
|
|
"CMAKE_CXX_COMPILER": "/usr/bin/clang++"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "linux-gcc-test",
|
|
|
|
"displayName": "GCC x86_64-pc-linux-gnu with unit testing",
|
|
|
|
"description": "VCMI Linux GCC",
|
|
|
|
"inherits": "linux-test",
|
|
|
|
"cacheVariables": {
|
2023-04-25 19:57:22 +02:00
|
|
|
"ENABLE_LUA" : "OFF",
|
2023-03-01 16:26:59 +02:00
|
|
|
"CMAKE_C_COMPILER": "/usr/bin/gcc",
|
|
|
|
"CMAKE_CXX_COMPILER": "/usr/bin/g++"
|
|
|
|
}
|
|
|
|
},
|
2023-12-30 01:30:08 +02:00
|
|
|
{
|
|
|
|
"name": "windows-mingw-release",
|
|
|
|
"displayName": "Windows x64 MinGW Release",
|
|
|
|
"description": "VCMI Windows Ninja using MinGW",
|
|
|
|
"inherits": "default-release",
|
|
|
|
"cacheVariables": {
|
2024-11-15 00:26:24 +02:00
|
|
|
"CMAKE_BUILD_TYPE": "Release",
|
|
|
|
"CMAKE_C_COMPILER": "gcc",
|
|
|
|
"CMAKE_CXX_COMPILER": "g++"
|
2023-12-30 01:30:08 +02:00
|
|
|
}
|
|
|
|
},
|
2022-05-26 07:55:20 +02:00
|
|
|
{
|
|
|
|
"name": "windows-msvc-release",
|
|
|
|
"displayName": "Windows x64 RelWithDebInfo",
|
|
|
|
"description": "VCMI RelWithDebInfo build",
|
|
|
|
"inherits": "default-release",
|
|
|
|
"generator": "Visual Studio 17 2022",
|
|
|
|
"architecture": {
|
|
|
|
"value": "x64",
|
|
|
|
"strategy": "set"
|
|
|
|
},
|
|
|
|
"cacheVariables": {
|
|
|
|
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
|
|
|
|
"CMAKE_POLICY_DEFAULT_CMP0091": "NEW",
|
2023-10-06 12:44:56 +02:00
|
|
|
"FORCE_BUNDLED_MINIZIP": "ON"
|
2023-10-09 21:48:49 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
},
|
2024-10-27 11:18:21 +02:00
|
|
|
{
|
|
|
|
"name": "windows-msvc-release-x86",
|
|
|
|
"displayName": "Windows x86 RelWithDebInfo",
|
|
|
|
"description": "VCMI RelWithDebInfo build",
|
|
|
|
"inherits": "default-release",
|
|
|
|
"generator": "Visual Studio 17 2022",
|
|
|
|
"cacheVariables": {
|
|
|
|
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
|
|
|
|
"CMAKE_POLICY_DEFAULT_CMP0091": "NEW",
|
|
|
|
"FORCE_BUNDLED_MINIZIP": "ON",
|
|
|
|
"CMAKE_GENERATOR_PLATFORM": "WIN32"
|
|
|
|
}
|
|
|
|
},
|
2023-10-09 21:48:49 +02:00
|
|
|
{
|
|
|
|
"name": "windows-msvc-release-ccache",
|
|
|
|
"displayName": "Windows x64 RelWithDebInfo with ccache",
|
|
|
|
"description": "VCMI RelWithDebInfo build with ccache",
|
|
|
|
"inherits": "windows-msvc-release",
|
|
|
|
"cacheVariables": {
|
|
|
|
"ENABLE_CCACHE": "ON"
|
|
|
|
|
2022-05-26 07:55:20 +02:00
|
|
|
}
|
|
|
|
},
|
2023-01-22 23:53:23 +02:00
|
|
|
{
|
|
|
|
"name": "windows-mingw-conan-linux",
|
|
|
|
"displayName": "Ninja+Conan release",
|
|
|
|
"description": "VCMI Windows Ninja using Conan on Linux",
|
|
|
|
"inherits": [
|
|
|
|
"build-with-conan",
|
|
|
|
"default-release"
|
|
|
|
],
|
|
|
|
"cacheVariables": {
|
|
|
|
"CMAKE_BUILD_TYPE": "Release",
|
|
|
|
"FORCE_BUNDLED_FL": "ON"
|
|
|
|
}
|
|
|
|
},
|
2022-05-26 07:55:20 +02:00
|
|
|
{
|
|
|
|
"name": "macos-ninja-release",
|
|
|
|
"displayName": "Ninja release",
|
|
|
|
"description": "VCMI MacOS Ninja",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
2022-08-30 16:29:00 +02:00
|
|
|
{
|
|
|
|
"name": "macos-conan-ninja-release",
|
|
|
|
"displayName": "Ninja+Conan release",
|
|
|
|
"description": "VCMI MacOS Ninja using Conan",
|
2022-10-13 12:09:15 +02:00
|
|
|
"inherits": [
|
|
|
|
"build-with-conan",
|
|
|
|
"default-release"
|
|
|
|
],
|
2022-08-30 16:29:00 +02:00
|
|
|
"cacheVariables": {
|
|
|
|
"CMAKE_BUILD_TYPE": "Release"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "macos-arm-conan-ninja-release",
|
|
|
|
"displayName": "Ninja+Conan arm64 release",
|
|
|
|
"description": "VCMI MacOS-arm64 Ninja using Conan",
|
2022-09-21 16:47:57 +02:00
|
|
|
"inherits": "macos-conan-ninja-release"
|
2022-08-30 16:29:00 +02:00
|
|
|
},
|
2022-05-26 07:55:20 +02:00
|
|
|
{
|
|
|
|
"name": "macos-xcode-release",
|
|
|
|
"displayName": "XCode release",
|
|
|
|
"description": "VCMI MacOS Xcode",
|
|
|
|
"inherits": "default-release",
|
|
|
|
"generator": "Xcode"
|
2022-08-09 12:35:05 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "ios-device",
|
|
|
|
"displayName": "Base iOS device",
|
|
|
|
"description": "Base VCMI preset for iOS device",
|
|
|
|
"generator": "Xcode",
|
|
|
|
"binaryDir": "../build-${presetName}",
|
|
|
|
"cacheVariables": {
|
|
|
|
"CMAKE_SYSTEM_NAME": "iOS",
|
|
|
|
"FORCE_BUNDLED_FL": "ON",
|
2022-09-24 23:23:40 +02:00
|
|
|
"FORCE_BUNDLED_MINIZIP": "ON",
|
2022-10-08 20:55:15 +02:00
|
|
|
"ENABLE_EDITOR" : "OFF"
|
2022-08-09 12:35:05 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "ios-simulator",
|
|
|
|
"displayName": "Base iOS simulator",
|
|
|
|
"description": "Base VCMI preset for iOS simulator",
|
|
|
|
"inherits": "ios-device",
|
|
|
|
"cacheVariables": {
|
|
|
|
"CMAKE_OSX_SYSROOT": "iphonesimulator"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2022-10-13 12:09:15 +02:00
|
|
|
"name": "ios-device-conan",
|
|
|
|
"displayName": "Base iOS device using Conan",
|
|
|
|
"description": "Base VCMI preset for iOS device using Conan",
|
|
|
|
"inherits": [
|
|
|
|
"build-with-conan",
|
|
|
|
"ios-device"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "base-ios-release",
|
|
|
|
"displayName": "Base iOS release",
|
|
|
|
"description": "Base VCMI preset for iOS release",
|
|
|
|
"inherits": "base-release",
|
|
|
|
"hidden": true,
|
|
|
|
"cacheVariables": {
|
|
|
|
"BUNDLE_IDENTIFIER_PREFIX": "eu.vcmi"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "ios-release-conan",
|
|
|
|
"displayName": "iOS+Conan release",
|
|
|
|
"description": "VCMI iOS release using Conan",
|
2022-08-09 12:35:05 +02:00
|
|
|
"inherits": [
|
2022-10-13 12:09:15 +02:00
|
|
|
"base-ios-release",
|
|
|
|
"ios-device-conan"
|
2023-10-02 00:09:25 +02:00
|
|
|
],
|
|
|
|
"cacheVariables": {
|
|
|
|
"ENABLE_PCH" : "ON"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "ios-release-conan-ccache",
|
|
|
|
"displayName": "iOS+Conan release using ccache",
|
|
|
|
"description": "VCMI iOS release using Conan and ccache",
|
|
|
|
"inherits": "ios-release-conan",
|
|
|
|
"cacheVariables": {
|
2023-10-09 21:48:49 +02:00
|
|
|
"ENABLE_PCH" : "OFF",
|
|
|
|
"ENABLE_CCACHE": "ON"
|
2023-10-02 00:09:25 +02:00
|
|
|
}
|
2022-10-13 12:09:15 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "ios-release-legacy",
|
|
|
|
"displayName": "iOS release using legacy dependencies",
|
|
|
|
"description": "VCMI iOS release using legacy dependencies",
|
|
|
|
"inherits": [
|
|
|
|
"base-ios-release",
|
|
|
|
"ios-device"
|
2022-08-09 12:35:05 +02:00
|
|
|
],
|
|
|
|
"cacheVariables": {
|
2022-08-11 12:14:02 +02:00
|
|
|
"CMAKE_PREFIX_PATH": "${sourceDir}/build/iphoneos"
|
2022-08-09 12:35:05 +02:00
|
|
|
}
|
2023-02-26 14:53:51 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "android-conan-ninja-release",
|
|
|
|
"displayName": "Android release",
|
|
|
|
"description": "VCMI Android Ninja using Conan",
|
|
|
|
"inherits": [
|
|
|
|
"build-with-conan",
|
|
|
|
"default-release"
|
|
|
|
],
|
|
|
|
"cacheVariables": {
|
2024-06-21 16:58:33 +02:00
|
|
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
|
|
|
|
"ANDROIDDEPLOYQT_OPTIONS" : "--aab"
|
2023-02-26 14:53:51 +02:00
|
|
|
}
|
2024-04-22 09:26:05 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "android-daily-release",
|
|
|
|
"displayName": "Android daily release",
|
|
|
|
"description": "VCMI Android daily build",
|
|
|
|
"inherits": "android-conan-ninja-release",
|
|
|
|
"cacheVariables": {
|
|
|
|
"ANDROID_GRADLE_PROPERTIES": "applicationIdSuffix=.daily;signingConfig=dailySigning;applicationLabel=VCMI daily"
|
|
|
|
}
|
2022-05-26 07:55:20 +02:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"buildPresets": [
|
|
|
|
{
|
|
|
|
"name": "default-release",
|
|
|
|
"hidden": true,
|
|
|
|
"configuration": "RelWithDebInfo"
|
|
|
|
},
|
2023-07-11 14:30:45 +02:00
|
|
|
{
|
|
|
|
"name": "default-debug",
|
|
|
|
"hidden": true,
|
|
|
|
"configuration": "Debug"
|
|
|
|
},
|
2022-05-26 07:55:20 +02:00
|
|
|
{
|
|
|
|
"name": "linux-clang-release",
|
|
|
|
"configurePreset": "linux-clang-release",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
2023-12-27 22:14:00 +02:00
|
|
|
{
|
|
|
|
"name": "linux-clang-release-ccache",
|
|
|
|
"configurePreset": "linux-clang-release-ccache",
|
|
|
|
"inherits": "linux-clang-release"
|
|
|
|
},
|
2023-03-01 16:26:59 +02:00
|
|
|
{
|
|
|
|
"name": "linux-clang-test",
|
|
|
|
"configurePreset": "linux-clang-test",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "linux-gcc-test",
|
|
|
|
"configurePreset": "linux-gcc-test",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
2022-05-26 07:55:20 +02:00
|
|
|
{
|
|
|
|
"name": "linux-gcc-release",
|
|
|
|
"configurePreset": "linux-gcc-release",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
2023-12-27 22:14:00 +02:00
|
|
|
{
|
|
|
|
"name": "linux-gcc-release-ccache",
|
|
|
|
"configurePreset": "linux-gcc-release-ccache",
|
|
|
|
"inherits": "linux-gcc-release"
|
|
|
|
},
|
2023-07-11 14:30:45 +02:00
|
|
|
{
|
|
|
|
"name": "linux-gcc-debug",
|
|
|
|
"configurePreset": "linux-gcc-debug",
|
|
|
|
"inherits": "default-debug"
|
|
|
|
},
|
2022-05-26 07:55:20 +02:00
|
|
|
{
|
|
|
|
"name": "macos-xcode-release",
|
|
|
|
"configurePreset": "macos-xcode-release",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "macos-ninja-release",
|
|
|
|
"configurePreset": "macos-ninja-release",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
2022-08-30 16:29:00 +02:00
|
|
|
{
|
|
|
|
"name": "macos-conan-ninja-release",
|
|
|
|
"configurePreset": "macos-conan-ninja-release",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "macos-arm-conan-ninja-release",
|
|
|
|
"configurePreset": "macos-arm-conan-ninja-release",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
2023-12-30 01:30:08 +02:00
|
|
|
{
|
|
|
|
"name": "windows-mingw-release",
|
|
|
|
"configurePreset": "windows-mingw-release",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
2022-05-26 07:55:20 +02:00
|
|
|
{
|
|
|
|
"name": "windows-msvc-release",
|
|
|
|
"configurePreset": "windows-msvc-release",
|
2023-12-03 21:03:09 +02:00
|
|
|
"inherits": "default-release"
|
2022-05-28 13:32:54 +02:00
|
|
|
},
|
2024-10-27 11:18:21 +02:00
|
|
|
{
|
|
|
|
"name": "windows-msvc-release-x86",
|
|
|
|
"configurePreset": "windows-msvc-release-x86",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
2023-10-09 21:48:49 +02:00
|
|
|
{
|
|
|
|
"name": "windows-msvc-release-ccache",
|
|
|
|
"configurePreset": "windows-msvc-release-ccache",
|
|
|
|
"inherits": "windows-msvc-release"
|
|
|
|
},
|
2022-05-28 13:32:54 +02:00
|
|
|
{
|
|
|
|
"name": "windows-msvc-relwithdebinfo",
|
|
|
|
"configurePreset": "windows-msvc-release",
|
2022-05-26 07:55:20 +02:00
|
|
|
"inherits": "default-release"
|
2022-08-09 12:35:05 +02:00
|
|
|
},
|
2023-01-22 23:53:23 +02:00
|
|
|
{
|
|
|
|
"name": "windows-mingw-conan-linux",
|
|
|
|
"configurePreset": "windows-mingw-conan-linux",
|
|
|
|
"inherits": "default-release",
|
|
|
|
"configuration": "Release"
|
|
|
|
},
|
2022-08-09 12:35:05 +02:00
|
|
|
{
|
2022-10-13 12:09:15 +02:00
|
|
|
"name": "ios-release-conan",
|
|
|
|
"configurePreset": "ios-release-conan",
|
2022-08-09 12:35:05 +02:00
|
|
|
"inherits": "default-release",
|
2022-08-11 12:14:02 +02:00
|
|
|
"configuration": "Release",
|
2022-08-09 12:35:05 +02:00
|
|
|
"targets": ["vcmiclient"],
|
|
|
|
"nativeToolOptions": [
|
2022-08-11 12:14:02 +02:00
|
|
|
"CODE_SIGNING_ALLOWED_FOR_APPS=NO"
|
2022-08-09 12:35:05 +02:00
|
|
|
]
|
2022-10-13 12:09:15 +02:00
|
|
|
},
|
2023-10-02 00:09:25 +02:00
|
|
|
{
|
|
|
|
"name": "ios-release-conan-ccache",
|
|
|
|
"configurePreset": "ios-release-conan-ccache",
|
|
|
|
"inherits": "ios-release-conan"
|
|
|
|
},
|
2022-10-13 12:09:15 +02:00
|
|
|
{
|
|
|
|
"name": "ios-release-legacy",
|
|
|
|
"configurePreset": "ios-release-legacy",
|
|
|
|
"inherits": "ios-release-conan"
|
2023-02-26 14:53:51 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "android-conan-ninja-release",
|
|
|
|
"configurePreset": "android-conan-ninja-release",
|
|
|
|
"inherits": "default-release"
|
2024-04-22 09:26:05 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "android-daily-release",
|
|
|
|
"configurePreset": "android-daily-release",
|
|
|
|
"inherits": "android-conan-ninja-release"
|
2022-05-26 07:55:20 +02:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"testPresets": [
|
|
|
|
{
|
|
|
|
"name": "default-release",
|
|
|
|
"hidden": true,
|
|
|
|
"output": {
|
|
|
|
"shortProgress": true,
|
|
|
|
"verbosity": "verbose"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "linux-clang-release",
|
|
|
|
"configurePreset": "linux-clang-release",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "linux-gcc-release",
|
|
|
|
"configurePreset": "linux-gcc-release",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
2023-03-01 16:26:59 +02:00
|
|
|
{
|
|
|
|
"name": "linux-clang-test",
|
|
|
|
"configurePreset": "linux-clang-test",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "linux-gcc-test",
|
|
|
|
"configurePreset": "linux-gcc-test",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
2022-05-26 07:55:20 +02:00
|
|
|
{
|
|
|
|
"name": "macos-xcode-release",
|
|
|
|
"configurePreset": "macos-xcode-release",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "macos-ninja-release",
|
|
|
|
"configurePreset": "macos-ninja-release",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
2023-12-30 01:30:08 +02:00
|
|
|
{
|
|
|
|
"name": "windows-mingw-release",
|
|
|
|
"configurePreset": "windows-mingw-release",
|
|
|
|
"inherits": "default-release"
|
|
|
|
},
|
2022-05-26 07:55:20 +02:00
|
|
|
{
|
|
|
|
"name": "windows-msvc-release",
|
|
|
|
"configurePreset": "windows-msvc-release",
|
|
|
|
"inherits": "default-release"
|
2023-01-22 23:53:23 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "windows-mingw-conan-linux",
|
|
|
|
"configurePreset": "windows-mingw-conan-linux",
|
|
|
|
"inherits": "default-release"
|
2022-05-26 07:55:20 +02:00
|
|
|
}
|
|
|
|
]
|
2022-08-09 12:35:05 +02:00
|
|
|
}
|