-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild_executable.bat
More file actions
35 lines (32 loc) · 1 KB
/
build_executable.bat
File metadata and controls
35 lines (32 loc) · 1 KB
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
@echo off
echo ========================================
echo Building LiDARch Executable
echo ========================================
echo.
REM Install dependencies
echo Installing Python dependencies...
pip install -r requirements.txt
pip install pyinstaller
echo.
echo Building executable with PyInstaller...
pyinstaller --name="LiDARch" ^
--onefile ^
--windowed ^
--icon=assets\icon.ico ^
--add-data="Step1.descompress_new_lidar.bat;." ^
--add-data="Step2.lasground.bat;." ^
--add-data="Step3.las2lasfilt.bat;." ^
--add-data="Step4.saga_interpolation.bat;." ^
--add-data="Step5.merge_las.bat;." ^
--add-data="Step6.visualizations_rvt.bat;." ^
--add-data="rvt_monitored.py;." ^
--add-data="gepn_logo.png;." ^
--add-data="cispac_logo.png;." ^
--uac-admin ^
lidarch_main.py
echo.
echo ========================================
echo Build complete!
echo Executable: dist\LiDARch.exe
echo ========================================
pause