Files
omath/CMakePresets.json
Orange++ 897484bea1 Temp (#123)
* Coverage

* added fixes

* removed spacing

* removed junk

* removed print

* removed coverage

* removed useless stuff

* fix

---------

Co-authored-by: Saikari <lin@sz.cn.eu.org>
2025-12-23 02:47:12 +03:00

687 lines
18 KiB
JSON

{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 25,
"patch": 0
},
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/cmake-build/build/${presetName}",
"installDir": "${sourceDir}/cmake-build/install/${presetName}"
},
{
"name": "vcpkg-base",
"hidden": true,
"cacheVariables": {
"OMATH_BUILD_VIA_VCPKG": "ON",
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
"VCPKG_INSTALLED_DIR": "${sourceDir}/cmake-build/vcpkg_installed"
}
},
{
"name": "debug",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "release",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "windows-base",
"hidden": true,
"inherits": "base",
"cacheVariables": {
"CMAKE_CXX_COMPILER": "cl.exe"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "windows-vcpkg-base",
"hidden": true,
"inherits": ["windows-base", "vcpkg-base"],
"cacheVariables": {
"VCPKG_MANIFEST_FEATURES": "tests;imgui;avx2;examples"
}
},
{
"name": "windows-debug",
"displayName": "Windows Debug",
"inherits": ["windows-base", "debug"]
},
{
"name": "windows-release",
"displayName": "Windows Release",
"inherits": ["windows-base", "release"]
},
{
"name": "windows-debug-vcpkg",
"displayName": "Windows Debug (vcpkg)",
"inherits": ["windows-vcpkg-base", "debug"]
},
{
"name": "windows-release-vcpkg",
"displayName": "Windows Release (vcpkg)",
"inherits": ["windows-vcpkg-base", "release"]
},
{
"name": "windows-x86-vcpkg-base",
"hidden": true,
"inherits": ["windows-base", "vcpkg-base"],
"architecture": {
"value": "x86",
"strategy": "external"
},
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x86-windows",
"VCPKG_HOST_TRIPLET": "x64-windows",
"VCPKG_MANIFEST_FEATURES": "tests;imgui;avx2;examples"
}
},
{
"name": "windows-debug-vcpkg-x86",
"displayName": "Windows x86 Debug (vcpkg)",
"inherits": ["windows-x86-vcpkg-base", "debug"]
},
{
"name": "windows-release-vcpkg-x86",
"displayName": "Windows x86 Release (vcpkg)",
"inherits": ["windows-x86-vcpkg-base", "release"]
},
{
"name": "windows-arm64-vcpkg-base",
"hidden": true,
"inherits": ["windows-base", "vcpkg-base"],
"architecture": {
"value": "arm64",
"strategy": "external"
},
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "arm64-windows",
"VCPKG_HOST_TRIPLET": "arm64-windows",
"VCPKG_MANIFEST_FEATURES": "tests;imgui;examples"
}
},
{
"name": "windows-debug-vcpkg-arm64",
"displayName": "Windows ARM64 Debug (vcpkg)",
"inherits": ["windows-arm64-vcpkg-base", "debug"]
},
{
"name": "windows-release-vcpkg-arm64",
"displayName": "Windows ARM64 Release (vcpkg)",
"inherits": ["windows-arm64-vcpkg-base", "release"]
},
{
"name": "linux-base",
"hidden": true,
"inherits": "base",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
}
},
{
"name": "linux-vcpkg-base",
"hidden": true,
"inherits": ["linux-base", "vcpkg-base"],
"cacheVariables": {
"VCPKG_MANIFEST_FEATURES": "tests;imgui;avx2"
}
},
{
"name": "linux-debug",
"displayName": "Linux Debug",
"inherits": ["linux-base", "debug"]
},
{
"name": "linux-release",
"displayName": "Linux Release",
"inherits": ["linux-base", "release"]
},
{
"name": "linux-debug-vcpkg",
"displayName": "Linux Debug (vcpkg)",
"inherits": ["linux-vcpkg-base", "debug"]
},
{
"name": "linux-release-vcpkg",
"displayName": "Linux Release (vcpkg)",
"inherits": ["linux-vcpkg-base", "release"]
},
{
"name": "linux-x86-vcpkg-base",
"hidden": true,
"inherits": ["linux-base", "vcpkg-base"],
"architecture": {
"value": "x86",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_C_FLAGS": "-m32",
"CMAKE_CXX_FLAGS": "-m32",
"VCPKG_TARGET_TRIPLET": "x86-linux",
"VCPKG_HOST_TRIPLET": "x64-linux",
"VCPKG_MANIFEST_FEATURES": "tests;imgui"
}
},
{
"name": "linux-debug-vcpkg-x86",
"displayName": "Linux x86 Debug (vcpkg)",
"inherits": ["linux-x86-vcpkg-base", "debug"]
},
{
"name": "linux-release-vcpkg-x86",
"displayName": "Linux x86 Release (vcpkg)",
"inherits": ["linux-x86-vcpkg-base", "release"]
},
{
"name": "linux-arm64-vcpkg-base",
"hidden": true,
"inherits": ["linux-base", "vcpkg-base"],
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "arm64-linux",
"VCPKG_HOST_TRIPLET": "arm64-linux",
"VCPKG_MANIFEST_FEATURES": "tests;imgui"
}
},
{
"name": "linux-debug-vcpkg-arm64",
"displayName": "Linux ARM64 Debug (vcpkg)",
"inherits": ["linux-arm64-vcpkg-base", "debug"]
},
{
"name": "linux-release-vcpkg-arm64",
"displayName": "Linux ARM64 Release (vcpkg)",
"inherits": ["linux-arm64-vcpkg-base", "release"]
},
{
"name": "darwin-base",
"hidden": true,
"inherits": "base",
"cacheVariables": {
"CMAKE_CXX_COMPILER": "clang++"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Darwin"
}
},
{
"name": "darwin-vcpkg-base",
"hidden": true,
"inherits": ["darwin-base", "vcpkg-base"],
"cacheVariables": {
"VCPKG_MANIFEST_FEATURES": "tests;imgui;avx2;examples"
}
},
{
"name": "darwin-debug",
"displayName": "macOS Debug",
"inherits": ["darwin-base", "debug"]
},
{
"name": "darwin-release",
"displayName": "macOS Release",
"inherits": ["darwin-base", "release"]
},
{
"name": "darwin-debug-vcpkg",
"displayName": "macOS Debug (vcpkg)",
"inherits": ["darwin-vcpkg-base", "debug"]
},
{
"name": "darwin-release-vcpkg",
"displayName": "macOS Release (vcpkg)",
"inherits": ["darwin-vcpkg-base", "release"]
},
{
"name": "darwin-x64-vcpkg-base",
"hidden": true,
"inherits": ["darwin-base", "vcpkg-base"],
"cacheVariables": {
"CMAKE_OSX_ARCHITECTURES": "x86_64",
"VCPKG_TARGET_TRIPLET": "x64-osx",
"VCPKG_HOST_TRIPLET": "x64-osx",
"VCPKG_MANIFEST_FEATURES": "tests;imgui;avx2;examples"
}
},
{
"name": "darwin-debug-vcpkg-x64",
"displayName": "macOS x64 Debug (vcpkg)",
"inherits": ["darwin-x64-vcpkg-base", "debug"]
},
{
"name": "darwin-release-vcpkg-x64",
"displayName": "macOS x64 Release (vcpkg)",
"inherits": ["darwin-x64-vcpkg-base", "release"]
},
{
"name": "ios-base",
"hidden": true,
"inherits": "base",
"cacheVariables": {
"CMAKE_SYSTEM_NAME": "iOS",
"CMAKE_OSX_DEPLOYMENT_TARGET": "18.5",
"CMAKE_XCODE_ATTRIBUTE_CODE_SIGNING_REQUIRED": "NO",
"CMAKE_XCODE_ATTRIBUTE_CODE_SIGNING_ALLOWED": "NO"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Darwin"
}
},
{
"name": "ios-vcpkg-base",
"hidden": true,
"inherits": ["ios-base", "vcpkg-base"],
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "arm64-ios",
"VCPKG_HOST_TRIPLET": "arm64-osx",
"VCPKG_MANIFEST_FEATURES": "tests;imgui"
}
},
{
"name": "ios-debug-vcpkg",
"displayName": "iOS Debug (vcpkg)",
"inherits": ["ios-vcpkg-base", "debug"]
},
{
"name": "ios-release-vcpkg",
"displayName": "iOS Release (vcpkg)",
"inherits": ["ios-vcpkg-base", "release"]
},
{
"name": "freebsd-base",
"hidden": true,
"inherits": "base",
"cacheVariables": {
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_COMPILER": "clang++"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "FreeBSD"
}
},
{
"name": "freebsd-vcpkg-base",
"hidden": true,
"inherits": ["freebsd-base", "vcpkg-base"],
"cacheVariables": {
"VCPKG_MANIFEST_FEATURES": "tests;imgui;avx2"
}
},
{
"name": "freebsd-debug",
"displayName": "FreeBSD Debug",
"inherits": ["freebsd-base", "debug"]
},
{
"name": "freebsd-release",
"displayName": "FreeBSD Release",
"inherits": ["freebsd-base", "release"]
},
{
"name": "freebsd-debug-vcpkg",
"displayName": "FreeBSD Debug (vcpkg)",
"inherits": ["freebsd-vcpkg-base", "debug"]
},
{
"name": "freebsd-release-vcpkg",
"displayName": "FreeBSD Release (vcpkg)",
"inherits": ["freebsd-vcpkg-base", "release"]
},
{
"name": "android-base",
"hidden": true,
"inherits": "base",
"cacheVariables": {
"CMAKE_SYSTEM_NAME": "Android",
"CMAKE_SYSTEM_VERSION": "24",
"CMAKE_ANDROID_NDK": "$env{ANDROID_NDK_HOME}",
"CMAKE_ANDROID_STL_TYPE": "c++_static"
}
},
{
"name": "android-vcpkg-base",
"hidden": true,
"inherits": ["android-base", "vcpkg-base"],
"cacheVariables": {
"VCPKG_MANIFEST_FEATURES": "tests;imgui"
}
},
{
"name": "android-arm64-base",
"hidden": true,
"inherits": "android-base",
"cacheVariables": {
"CMAKE_ANDROID_ARCH_ABI": "arm64-v8a"
}
},
{
"name": "android-arm64-vcpkg-base",
"hidden": true,
"inherits": "android-vcpkg-base",
"cacheVariables": {
"CMAKE_ANDROID_ARCH_ABI": "arm64-v8a",
"VCPKG_TARGET_TRIPLET": "arm64-android"
}
},
{
"name": "android-arm64-debug",
"displayName": "Android arm64-v8a Debug",
"inherits": ["android-arm64-base", "debug"]
},
{
"name": "android-arm64-release",
"displayName": "Android arm64-v8a Release",
"inherits": ["android-arm64-base", "release"]
},
{
"name": "android-arm64-debug-vcpkg",
"displayName": "Android arm64-v8a Debug (vcpkg)",
"inherits": ["android-arm64-vcpkg-base", "debug"]
},
{
"name": "android-arm64-release-vcpkg",
"displayName": "Android arm64-v8a Release (vcpkg)",
"inherits": ["android-arm64-vcpkg-base", "release"]
},
{
"name": "android-arm-neon-base",
"hidden": true,
"inherits": "android-base",
"cacheVariables": {
"CMAKE_ANDROID_ARCH_ABI": "armeabi-v7a",
"CMAKE_ANDROID_ARM_NEON": "ON"
}
},
{
"name": "android-arm-neon-vcpkg-base",
"hidden": true,
"inherits": "android-vcpkg-base",
"cacheVariables": {
"CMAKE_ANDROID_ARCH_ABI": "armeabi-v7a",
"CMAKE_ANDROID_ARM_NEON": "ON",
"VCPKG_TARGET_TRIPLET": "arm-neon-android"
}
},
{
"name": "android-arm-neon-debug",
"displayName": "Android armeabi-v7a NEON Debug",
"inherits": ["android-arm-neon-base", "debug"]
},
{
"name": "android-arm-neon-release",
"displayName": "Android armeabi-v7a NEON Release",
"inherits": ["android-arm-neon-base", "release"]
},
{
"name": "android-arm-neon-debug-vcpkg",
"displayName": "Android armeabi-v7a NEON Debug (vcpkg)",
"inherits": ["android-arm-neon-vcpkg-base", "debug"]
},
{
"name": "android-arm-neon-release-vcpkg",
"displayName": "Android armeabi-v7a NEON Release (vcpkg)",
"inherits": ["android-arm-neon-vcpkg-base", "release"]
},
{
"name": "android-x64-base",
"hidden": true,
"inherits": "android-base",
"cacheVariables": {
"CMAKE_ANDROID_ARCH_ABI": "x86_64"
}
},
{
"name": "android-x64-vcpkg-base",
"hidden": true,
"inherits": "android-vcpkg-base",
"cacheVariables": {
"CMAKE_ANDROID_ARCH_ABI": "x86_64",
"VCPKG_TARGET_TRIPLET": "x64-android"
}
},
{
"name": "android-x64-debug",
"displayName": "Android x86_64 Debug",
"inherits": ["android-x64-base", "debug"]
},
{
"name": "android-x64-release",
"displayName": "Android x86_64 Release",
"inherits": ["android-x64-base", "release"]
},
{
"name": "android-x64-debug-vcpkg",
"displayName": "Android x86_64 Debug (vcpkg)",
"inherits": ["android-x64-vcpkg-base", "debug"]
},
{
"name": "android-x64-release-vcpkg",
"displayName": "Android x86_64 Release (vcpkg)",
"inherits": ["android-x64-vcpkg-base", "release"]
},
{
"name": "android-x86-base",
"hidden": true,
"inherits": "android-base",
"cacheVariables": {
"CMAKE_ANDROID_ARCH_ABI": "x86"
}
},
{
"name": "android-x86-vcpkg-base",
"hidden": true,
"inherits": "android-vcpkg-base",
"cacheVariables": {
"CMAKE_ANDROID_ARCH_ABI": "x86",
"VCPKG_TARGET_TRIPLET": "x86-android"
}
},
{
"name": "android-x86-debug",
"displayName": "Android x86 Debug",
"inherits": ["android-x86-base", "debug"]
},
{
"name": "android-x86-release",
"displayName": "Android x86 Release",
"inherits": ["android-x86-base", "release"]
},
{
"name": "android-x86-debug-vcpkg",
"displayName": "Android x86 Debug (vcpkg)",
"inherits": ["android-x86-vcpkg-base", "debug"]
},
{
"name": "android-x86-release-vcpkg",
"displayName": "Android x86 Release (vcpkg)",
"inherits": ["android-x86-vcpkg-base", "release"]
},
{
"name": "android-debug",
"displayName": "Android Debug (default: arm64)",
"inherits": "android-arm64-debug"
},
{
"name": "android-release",
"displayName": "Android Release (default: arm64)",
"inherits": "android-arm64-release"
},
{
"name": "android-debug-vcpkg",
"displayName": "Android Debug (default: arm64, vcpkg)",
"inherits": "android-arm64-debug-vcpkg"
},
{
"name": "android-release-vcpkg",
"displayName": "Android Release (default: arm64, vcpkg)",
"inherits": "android-arm64-release-vcpkg"
},
{
"name": "wasm-base",
"hidden": true,
"inherits": "base"
},
{
"name": "wasm-vcpkg-base",
"hidden": true,
"inherits": ["wasm-base", "vcpkg-base"],
"cacheVariables": {
"VCPKG_CHAINLOAD_TOOLCHAIN_FILE": "$env{EMSDK}/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake",
"VCPKG_TARGET_TRIPLET": "wasm32-emscripten",
"VCPKG_MANIFEST_FEATURES": "tests;imgui"
}
},
{
"name": "wasm-debug-vcpkg",
"displayName": "WebAssembly Debug (vcpkg)",
"inherits": ["wasm-vcpkg-base", "debug"]
},
{
"name": "wasm-release-vcpkg",
"displayName": "WebAssembly Release (vcpkg)",
"inherits": ["wasm-vcpkg-base", "release"]
},
{
"name": "mingw-base",
"hidden": true,
"inherits": "base",
"cacheVariables": {
"CMAKE_C_COMPILER": "gcc",
"CMAKE_CXX_COMPILER": "g++"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "mingw-vcpkg-base",
"hidden": true,
"inherits": ["mingw-base", "vcpkg-base"],
"environment": {
"VCPKG_DEFAULT_HOST_TRIPLET": "x64-mingw-dynamic"
},
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-mingw-dynamic",
"VCPKG_HOST_TRIPLET": "x64-mingw-dynamic",
"VCPKG_MANIFEST_FEATURES": "tests;imgui"
}
},
{
"name": "mingw-debug",
"displayName": "MinGW x64 Debug",
"inherits": ["mingw-base", "debug"]
},
{
"name": "mingw-release",
"displayName": "MinGW x64 Release",
"inherits": ["mingw-base", "release"]
},
{
"name": "mingw-debug-vcpkg",
"displayName": "MinGW x64 Debug (vcpkg)",
"inherits": ["mingw-vcpkg-base", "debug"]
},
{
"name": "mingw-release-vcpkg",
"displayName": "MinGW x64 Release (vcpkg)",
"inherits": ["mingw-vcpkg-base", "release"]
},
{
"name": "mingw-ucrt-release-vcpkg",
"displayName": "MinGW UCRT64 Release (vcpkg)",
"inherits": ["mingw-vcpkg-base", "release"]
},
{
"name": "mingw32-base",
"hidden": true,
"inherits": "base",
"cacheVariables": {
"CMAKE_C_COMPILER": "gcc",
"CMAKE_CXX_COMPILER": "g++"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "mingw32-vcpkg-base",
"hidden": true,
"inherits": ["mingw32-base", "vcpkg-base"],
"environment": {
"VCPKG_DEFAULT_HOST_TRIPLET": "x86-mingw-dynamic"
},
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x86-mingw-dynamic",
"VCPKG_HOST_TRIPLET": "x86-mingw-dynamic",
"VCPKG_MANIFEST_FEATURES": "tests;imgui"
}
},
{
"name": "mingw32-debug",
"displayName": "MinGW x86 Debug",
"inherits": ["mingw32-base", "debug"]
},
{
"name": "mingw32-release",
"displayName": "MinGW x86 Release",
"inherits": ["mingw32-base", "release"]
},
{
"name": "mingw32-debug-vcpkg",
"displayName": "MinGW x86 Debug (vcpkg)",
"inherits": ["mingw32-vcpkg-base", "debug"]
},
{
"name": "mingw32-release-vcpkg",
"displayName": "MinGW x86 Release (vcpkg)",
"inherits": ["mingw32-vcpkg-base", "release"]
}
]
}