mirror of
https://github.com/jcefmaven/jcefbuild.git
synced 2025-11-07 09:43:46 +08:00
Remove wrong natives from windows build
This commit is contained in:
@@ -41,8 +41,11 @@ if "%TARGETARCH%"=="386" (call compile.bat win32) else (call compile.bat win64)
|
|||||||
:: Create distribution
|
:: Create distribution
|
||||||
if "%TARGETARCH%"=="386" (call make_distrib.bat win32) else (call make_distrib.bat win64)
|
if "%TARGETARCH%"=="386" (call make_distrib.bat win32) else (call make_distrib.bat win64)
|
||||||
|
|
||||||
:: Zip results to C:\out
|
:: Go to results
|
||||||
if "%TARGETARCH%"=="386" (cd ../binary_distrib/win32) else (cd ../binary_distrib/win64)
|
if "%TARGETARCH%"=="386" (cd ../binary_distrib/win32) else (cd ../binary_distrib/win64)
|
||||||
|
:: Remove wrong jogamp/gluegen natives from archive
|
||||||
|
if "%TARGETARCH%"=="arm64" (del /F /Q "bin/*-amd64.jar")
|
||||||
|
:: Zip results to C:\out
|
||||||
del /F C:\out\binary_distrib.tar.gz
|
del /F C:\out\binary_distrib.tar.gz
|
||||||
if not exist "C:\out" mkdir "C:\out"
|
if not exist "C:\out" mkdir "C:\out"
|
||||||
tar -czvf C:\out\binary_distrib.tar.gz *
|
tar -czvf C:\out\binary_distrib.tar.gz *
|
||||||
|
|||||||
Reference in New Issue
Block a user