Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
Make build scripts CI-friendly
Browse files Browse the repository at this point in the history
  • Loading branch information
AlienCowEatCake committed Jun 8, 2023
1 parent a5e3aae commit eb970a0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build_openssl_msvc2005.bat
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ rmdir /s /q "%BUILDDIR%\share"
rmdir /s /q "%BUILDDIR%\lib\pkgconfig"
rmdir /s /q "%BUILDDIR%\lib\engines-1_1"

pause
if NOT "%CI%" == "true" pause
6 changes: 3 additions & 3 deletions build_wpa_supplicant_pipe.bat
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@echo off
set VCVARS_ARCH=x86
set "VCVARS=%VS80COMNTOOLS%\..\..\VC\vcvarsall.bat"
set QTDIR=C:\Qt\4.4.3\msvc2005_static_lite01
set CMAKEDIR="%ProgramFiles%\CMake"
if "x%QTDIR%x" == "xx" set QTDIR=C:\Qt\4.4.3\msvc2005_static_lite01
if "x%CMAKEDIR%x" == "xx" set CMAKEDIR="%ProgramFiles%\CMake"
set IFACE=pipe
set BUILDDIR=build_%IFACE%

Expand All @@ -18,4 +18,4 @@ cmake --build . --config Release --target all
cpack -D CPACK_OUTPUT_FILE_PREFIX="%~dp0\."

cd "%~dp0"
pause
if NOT "%CI%" == "true" pause
6 changes: 3 additions & 3 deletions build_wpa_supplicant_standalone.bat
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@echo off
set VCVARS_ARCH=x86
set "VCVARS=%VS80COMNTOOLS%\..\..\VC\vcvarsall.bat"
set QTDIR=C:\Qt\4.4.3\msvc2005_static_lite01
set CMAKEDIR="%ProgramFiles%\CMake"
if "x%QTDIR%x" == "xx" set QTDIR=C:\Qt\4.4.3\msvc2005_static_lite01
if "x%CMAKEDIR%x" == "xx" set CMAKEDIR="%ProgramFiles%\CMake"
set IFACE=standalone
set BUILDDIR=build_%IFACE%

Expand All @@ -18,4 +18,4 @@ cmake --build . --config Release --target all
cpack -D CPACK_OUTPUT_FILE_PREFIX="%~dp0\."

cd "%~dp0"
pause
if NOT "%CI%" == "true" pause
6 changes: 3 additions & 3 deletions build_wpa_supplicant_udp.bat
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@echo off
set VCVARS_ARCH=x86
set "VCVARS=%VS80COMNTOOLS%\..\..\VC\vcvarsall.bat"
set QTDIR=C:\Qt\4.4.3\msvc2005_static_lite01
set CMAKEDIR="%ProgramFiles%\CMake"
if "x%QTDIR%x" == "xx" set QTDIR=C:\Qt\4.4.3\msvc2005_static_lite01
if "x%CMAKEDIR%x" == "xx" set CMAKEDIR="%ProgramFiles%\CMake"
set IFACE=udp
set BUILDDIR=build_%IFACE%

Expand All @@ -18,4 +18,4 @@ cmake --build . --config Release --target all
cpack -D CPACK_OUTPUT_FILE_PREFIX="%~dp0\."

cd "%~dp0"
pause
if NOT "%CI%" == "true" pause

0 comments on commit eb970a0

Please sign in to comment.