Compare commits

...

6 Commits

Author SHA1 Message Date
orange 5591eb6f88 mingw fix 2026-07-19 17:13:59 +03:00
orange 4a6d7c458b patch 2026-07-19 16:55:17 +03:00
orange a791ac1a84 fix 2026-07-19 16:47:25 +03:00
orange 56b10d3d9c fix 2026-07-19 16:36:37 +03:00
orange c068e3e0d8 updated vcpkg base line 2026-07-19 16:16:06 +03:00
orange 078e00db0d added final 2026-07-19 14:49:56 +03:00
5 changed files with 25 additions and 9 deletions
+5 -1
View File
@@ -707,7 +707,11 @@ jobs:
- name: Build
run: |
cmake --build cmake-build/build/${{ matrix.preset }} --target unit_tests omath
if [[ "${{ matrix.msystem }}" == "MINGW32" ]]; then
cmake --build cmake-build/build/${{ matrix.preset }} --target unit_tests omath --parallel 1
else
cmake --build cmake-build/build/${{ matrix.preset }} --target unit_tests omath
fi
- name: Run unit_tests.exe
run: |
+1 -1
View File
@@ -9,7 +9,7 @@ namespace omath::hud
LeftToRight,
};
struct Gradient
struct Gradient final
{
Color top_left;
Color top_right;
-2
View File
@@ -177,9 +177,7 @@ if command -v genhtml >/dev/null 2>&1; then
--title "Omath Coverage Report" \
--show-details \
--legend \
--demangle-cpp \
--num-spaces 4 \
--sort \
--function-coverage \
--branch-coverage
+1 -1
View File
@@ -1,7 +1,7 @@
{
"default-registry": {
"kind": "git",
"baseline": "b1b19307e2d2ec1eefbdb7ea069de7d4bcd31f01",
"baseline": "0878b5224d4a4968940ee296a2e7fae2d3b62983",
"repository": "https://github.com/microsoft/vcpkg"
},
"registries": [
+18 -4
View File
@@ -21,7 +21,11 @@
"dependencies": [
{
"name": "omath",
"features": ["imgui", "lua", "hooking"]
"features": [
"imgui",
"lua",
"hooking"
]
}
]
},
@@ -50,16 +54,26 @@
"opengl",
{
"name": "omath",
"features": ["hooking"],
"features": [
"hooking"
],
"platform": "windows & !arm & !uwp"
},
{
"name": "imgui",
"features": ["glfw-binding", "opengl3-binding"]
"features": [
"glfw-binding",
"opengl3-binding"
]
},
{
"name": "imgui",
"features": ["dx9-binding", "dx11-binding", "dx12-binding", "win32-binding"],
"features": [
"dx9-binding",
"dx11-binding",
"dx12-binding",
"win32-binding"
],
"platform": "windows & !arm & !uwp"
}
]