forked from overheadhunter/PanBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_windows.bat
38 lines (34 loc) · 1.05 KB
/
build_windows.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@echo off
echo Building new Panbox release...
cd panbox-core
call ant
if %errorlevel% neq 0 (
exit /b %errorlevel%
)
cd ..\panbox-common
call ant
if %errorlevel% neq 0 (
exit /b %errorlevel%
)
cd ..\panbox-win
call ant
if %errorlevel% neq 0 (
exit /b %errorlevel%
)
echo Copying all dependencies for Panbox build
xcopy /y /i JDokan.dll dist\
xcopy /y /i jniopencv_core.dll dist\
xcopy /y /i jniopencv_highgui.dll dist\
xcopy /y /i jniopencv_imgproc.dll dist\
xcopy /y /i jniopencv_ml.dll dist\
xcopy /y /i opencv_core249.dll dist\
xcopy /y /i opencv_highgui249.dll dist\
xcopy /y /i opencv_imgproc249.dll dist\
xcopy /y /i opencv_ml249.dll dist\
xcopy /y /i jnivideoInputLib.dll dist\
xcopy /y /i msvcp100.dll dist\
xcopy /y /i msvcr100.dll dist\
xcopy /y /i build-dependencies\Panbox.ico dist\
xcopy /y /i build-dependencies\panbox_splashscreen.png dist\
xcopy /y /i build-dependencies\commons-daemon-1.0.15-bin-windows\prunmgr.exe dist\
xcopy /y /i build-dependencies\commons-daemon-1.0.15-bin-windows\prunsrv.exe dist\