Compare commits

...

2 Commits

Author SHA1 Message Date
njohnson
c69b95e1ce Speed up Windows CI: use all CPU cores for jom
Some checks failed
CI Build / build-macos (push) Successful in 27s
CI Build / build-ubuntu (push) Has been cancelled
CI Build / build-windows (push) Failing after 17m17s
Changed from -j 1 to -j %NUMBER_OF_PROCESSORS%

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-13 16:33:03 -05:00
njohnson
ef6300aee9 Fix Linux build: define __stdcall as empty on non-Windows
The __stdcall calling convention is Windows-specific.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-13 16:28:28 -05:00
2 changed files with 6 additions and 1 deletions

View File

@ -32,7 +32,7 @@ jobs:
if errorlevel 1 exit /b 1
echo === Building with jom ===
jom.exe -j 1
jom.exe -j %NUMBER_OF_PROCESSORS%
if errorlevel 1 exit /b 1
echo === Build successful ===

View File

@ -3,6 +3,11 @@
#include <QtGlobal>
// Windows calling conventions - define as empty on non-Windows
#ifndef Q_OS_WIN
#define __stdcall
#endif
#ifdef Q_OS_WIN
#include "QtZlib/zlib.h"
#else