mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
10 lines
161 B
Batchfile
10 lines
161 B
Batchfile
REM Build xca on Windows
|
|
|
|
set BUILD=build
|
|
|
|
cmake -B %BUILD% -G "MinGW Makefiles" xca
|
|
cmake --build %BUILD% -j5
|
|
cmake --build %BUILD% -t install
|
|
cd %BUILD%
|
|
cpack
|