From c8c4fae232300ac2bc5ef619e3240dfeac65fa8c Mon Sep 17 00:00:00 2001 From: taynpg Date: Tue, 21 Jan 2025 17:46:40 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E4=BF=AE=E6=AD=A3xp=E7=BC=96?= =?UTF-8?q?=E8=AF=91=E8=84=9A=E6=9C=AC=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- xp_build.bat | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/xp_build.bat b/xp_build.bat index 8d0fefc..54c6e56 100644 --- a/xp_build.bat +++ b/xp_build.bat @@ -1,5 +1,10 @@ @echo off -REM Step 1: 配置 xmake + +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 ( @@ -8,18 +13,10 @@ if %errorlevel% neq 0 ( exit /b 1 ) -REM Step 2: 设置环境变量 -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 - -REM 验证设置的环境变量 echo BOOST_HEADER_DIR=%BOOST_HEADER_DIR% echo BOOST_LIB_DIR=%BOOST_LIB_DIR% echo BOOST_LIBS=%BOOST_LIBS% -REM Step 3: 构建项目 echo Building project with xmake... xmake if %errorlevel% neq 0 ( @@ -27,7 +24,5 @@ if %errorlevel% neq 0 ( pause exit /b 1 ) - -REM 完成 echo Build completed successfully. pause \ No newline at end of file