From 5b328e34c9c8344cac285bae4d7ea30b88c13b8a Mon Sep 17 00:00:00 2001
From: taynpg <taynpg@163.com>
Date: Fri, 14 Feb 2025 22:16:16 +0800
Subject: [PATCH] add: xp build script

---
 xp_build.bat | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 xp_build.bat

diff --git a/xp_build.bat b/xp_build.bat
new file mode 100644
index 0000000..e2c8996
--- /dev/null
+++ b/xp_build.bat
@@ -0,0 +1,26 @@
+@echo off
+
+echo Setting environment variables...
+set BOOST_HEADER_DIR=C:\boost\include\boost-1_83
+set BOOST_LIB_DIR=C:\boost\lib
+set BOOST_LIBS=boost_filesystem-mgw7-mt-x32-1_83
+
+echo Configuring xmake...
+xmake f -p mingw -a i386 --boost=y
+if %errorlevel% neq 0 (
+    echo Error: xmake configuration failed.
+    pause
+    exit /b 1
+)
+echo BOOST_HEADER_DIR=%BOOST_HEADER_DIR%
+echo BOOST_LIB_DIR=%BOOST_LIB_DIR%
+echo BOOST_LIBS=%BOOST_LIBS%
+echo Building project with xmake...
+xmake
+if %errorlevel% neq 0 (
+    echo Error: xmake build failed.
+    pause
+    exit /b 1
+)
+echo Build completed successfully.
+pause
\ No newline at end of file