File size: 973 Bytes
1ef4f1b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@echo off
echo ==========================================
echo 🪟 Building LinhHuong Office for Windows
echo ==========================================

:: 1. Check for Rust & Cargo
cargo --version >nul 2>&1
if %errorlevel% neq 0 (
    echo Rust is not installed!
    echo Please install Rust from: https://rustup.rs/
    pause
    exit /b 1
)

:: 2. Check for pnpm
pnpm --version >nul 2>&1
if %errorlevel% neq 0 (
    echo pnpm is not installed!
    echo Please install pnpm by running: npm install -g pnpm
    pause
    exit /b 1
)

:: 3. Install JS dependencies
echo Installing Node.js dependencies...
call pnpm install

:: 4. Build Tauri App
echo Starting Tauri Build for Trinh Chieu...
call pnpm --filter trinh-chieu tauri build

echo ==========================================
echo ✅ Windows Build Complete!
echo 📁 Your .exe and .msi files are located in: apps\trinh-chieu\src-tauri\target\release\bundle\
echo ==========================================
pause