2015-11-04 09:30:27 -05:00
|
|
|
goto %TOOLSET%
|
|
|
|
|
|
|
|
:msbuild
|
|
|
|
cd build\msw
|
|
|
|
msbuild /m:2 /v:n /p:Platform=%ARCH% /p:Configuration="%CONFIGURATION%" wx_vc12.sln
|
2017-11-22 07:04:12 -05:00
|
|
|
cd ..\..\tests
|
|
|
|
msbuild /m:2 /v:n /p:Platform=%ARCH% /p:Configuration="%CONFIGURATION%" test_vc12.sln
|
|
|
|
msbuild /m:2 /v:n /p:Platform=%ARCH% /p:Configuration="%CONFIGURATION%" test_gui_vc12.sln
|
2015-11-04 09:30:27 -05:00
|
|
|
goto :eof
|
|
|
|
|
|
|
|
:nmake
|
|
|
|
cd build\msw
|
|
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio %VS%\VC\vcvarsall.bat" %ARCH%
|
|
|
|
nmake -f makefile.vc BUILD=%BUILD%
|
2017-11-22 07:04:12 -05:00
|
|
|
cd ..\..\tests
|
|
|
|
nmake -f makefile.vc BUILD=%BUILD%
|
2015-11-04 09:30:27 -05:00
|
|
|
goto :eof
|
|
|
|
|
|
|
|
:mingw
|
|
|
|
cd build\msw
|
|
|
|
path C:\MinGW\bin;%path%
|
2015-11-07 17:36:10 -05:00
|
|
|
echo --- Tools versions:
|
Remove the correct directory from PATH for MinGW AppVeyor builds
We need to remove the directory containing sh.exe from the PATH as
otherwise mingw32-make seems to use it and not cmd.exe for executing the
commands in the makefile, but the wrong directory was being removed in
appveyor.yml, having no effect.
Fix this and undo 5f2ccde269278860d7afbe1ca101a1b69370fbfb which
compensated for it by (almost) clearing the PATH entirely which, in
turn, broke one of our unit tests (and could break other things in the
future, as having an empty PATH is rather unexpected).
Also use the full path for head program now that its directory is not in
the PATH any more. Alternative could be to use PowerShell, but while
powershell -Command "'gcc','mingw32-make','ar'|%%{ iex \"$_ --version\"|select -first 1 }"
does work, it looks really ugly, so avoid it for now.
See https://github.com/wxWidgets/wxWidgets/pull/142
See #17274.
2017-11-25 09:59:16 -05:00
|
|
|
g++ --version | "C:\Program Files\Git\usr\bin\head" -n 1
|
|
|
|
mingw32-make --version | "C:\Program Files\Git\usr\bin\head" -n 1
|
|
|
|
ar --version | "C:\Program Files\Git\usr\bin\head" -n 1
|
2015-11-07 17:36:10 -05:00
|
|
|
echo.
|
|
|
|
echo --- Starting the build
|
|
|
|
echo.
|
2015-12-04 07:08:22 -05:00
|
|
|
mingw32-make -f makefile.gcc setup_h BUILD=debug SHARED=0
|
|
|
|
mingw32-make -j3 -f makefile.gcc BUILD=debug SHARED=0
|
2017-11-22 07:04:12 -05:00
|
|
|
cd ..\..\tests
|
|
|
|
mingw32-make -j3 -f makefile.gcc BUILD=debug SHARED=0
|
2015-11-04 09:30:27 -05:00
|
|
|
goto :eof
|
|
|
|
|
|
|
|
:msys2
|
|
|
|
path C:\msys64\%MSYSTEM%\bin;C:\msys64\usr\bin;%path%
|
|
|
|
set CHERE_INVOKING=yes
|
|
|
|
:: Workaround for "configure: Bad file descriptor"
|
|
|
|
perl -i".bak" -pe "s/^test -n \".DJDIR\"/#$&/" configure
|
|
|
|
bash -lc "g++ --version"
|
2017-11-22 07:04:12 -05:00
|
|
|
bash -lc "CXXFLAGS=-Wno-deprecated-declarations ./configure --disable-optimise && make -j3 && make -j3 -C tests"
|
2015-11-04 09:30:27 -05:00
|
|
|
goto :eof
|
|
|
|
|
|
|
|
:cygwin
|
2017-11-03 12:00:25 -04:00
|
|
|
C:\cygwin\setup-x86.exe -qgnNdO -R C:/cygwin -s http://cygwin.mirror.constant.com -l C:/cygwin/var/cache/setup -P libjpeg-devel -P libpng-devel -P libtiff-devel -P libexpat-devel
|
2015-11-04 09:30:27 -05:00
|
|
|
path c:\cygwin\bin;%path%
|
|
|
|
set CHERE_INVOKING=yes
|
|
|
|
:: Workaround for "configure: Bad file descriptor"
|
|
|
|
perl -i".bak" -pe "s/^test -n \".DJDIR\"/#$&/" configure
|
|
|
|
bash -lc "g++ --version"
|
2017-11-22 07:04:12 -05:00
|
|
|
bash -lc "LDFLAGS=-L/usr/lib/w32api ./configure --disable-optimise --disable-shared && make -j3 && make -j3 -C tests"
|
2015-11-04 09:30:27 -05:00
|
|
|
goto :eof
|
2016-10-05 04:16:30 -04:00
|
|
|
|
2016-11-03 16:28:26 -04:00
|
|
|
:cmake_msys
|
|
|
|
if "%MSYSTEM%"=="" set MSYSTEM=MINGW32
|
|
|
|
path C:\msys64\%MSYSTEM%\bin;C:\msys64\usr\bin;%path%
|
|
|
|
set GENERATOR=MSYS Makefiles
|
|
|
|
set SKIPTESTS=1
|
|
|
|
set SKIPINSTALL=1
|
|
|
|
set CMAKE_BUILD_FLAGS=-- -j3
|
|
|
|
goto cmake
|
|
|
|
|
|
|
|
:cmake_cygwin
|
|
|
|
C:\cygwin\setup-x86.exe -qnNdO -R C:/cygwin -s http://cygwin.mirror.constant.com -l C:/cygwin/var/cache/setup -P libjpeg-devel -P libpng-devel -P libtiff-devel -P libexpat-devel
|
|
|
|
path c:\cygwin\bin;%path%
|
|
|
|
set GENERATOR=Unix Makefiles
|
|
|
|
set SKIPTESTS=1
|
|
|
|
set SKIPINSTALL=1
|
|
|
|
set CMAKE_BUILD_FLAGS=-- -j3
|
|
|
|
goto cmake
|
|
|
|
|
|
|
|
:cmake_mingw
|
|
|
|
:: CMake requires a path without sh (added by git on AppVeyor)
|
|
|
|
path C:\Program Files (x86)\CMake\bin;C:\MinGW\bin
|
|
|
|
set GENERATOR=MinGW Makefiles
|
|
|
|
set SKIPTESTS=1
|
|
|
|
set CMAKE_BUILD_FLAGS=-- -j3
|
|
|
|
goto cmake
|
|
|
|
|
2016-10-05 04:16:30 -04:00
|
|
|
:cmake
|
|
|
|
echo --- Tools versions:
|
2016-11-03 16:28:26 -04:00
|
|
|
cmake --version
|
|
|
|
|
|
|
|
if "%SHARED%"=="" set SHARED=ON
|
|
|
|
if "%CONFIGURATION%"=="" set CONFIGURATION=Release
|
|
|
|
|
|
|
|
if "%SKIPTESTS%"=="1" (
|
|
|
|
set BUILD_TESTS=OFF
|
|
|
|
) else (
|
2017-12-10 16:40:23 -05:00
|
|
|
set BUILD_TESTS=ALL
|
2016-11-03 16:28:26 -04:00
|
|
|
)
|
2016-10-05 04:16:30 -04:00
|
|
|
echo.
|
|
|
|
echo --- Generating project files
|
|
|
|
echo.
|
|
|
|
set WX_INSTALL_PATH=%HOMEDRIVE%%HOMEPATH%\wx_install_target
|
|
|
|
mkdir %WX_INSTALL_PATH%
|
2016-11-03 16:28:26 -04:00
|
|
|
mkdir build_cmake
|
|
|
|
pushd build_cmake
|
|
|
|
cmake -G "%GENERATOR%" -DwxBUILD_TESTS=%BUILD_TESTS% -DCMAKE_INSTALL_PREFIX=%WX_INSTALL_PATH% -DwxBUILD_SHARED=%SHARED% %CMAKE_CONFIGURE_FLAGS% ..
|
|
|
|
if ERRORLEVEL 1 goto error
|
2016-10-05 04:16:30 -04:00
|
|
|
echo.
|
|
|
|
echo --- Starting the build
|
|
|
|
echo.
|
2016-11-03 16:28:26 -04:00
|
|
|
cmake --build . --config %CONFIGURATION% %CMAKE_BUILD_FLAGS%
|
|
|
|
if ERRORLEVEL 1 goto error
|
2016-10-05 04:16:30 -04:00
|
|
|
|
2016-11-03 16:28:26 -04:00
|
|
|
:: Package binaries as artifact
|
|
|
|
where 7z
|
|
|
|
if ERRORLEVEL 1 goto cmake_test
|
|
|
|
7z a -r wxWidgets_Binaries.zip lib/*.*
|
|
|
|
appveyor PushArtifact wxWidgets_Binaries.zip
|
|
|
|
|
|
|
|
:cmake_test
|
|
|
|
if NOT "%SKIPINSTALL%"=="1" (
|
|
|
|
echo.
|
|
|
|
echo --- Installing
|
|
|
|
echo.
|
|
|
|
cmake --build . --config %CONFIGURATION% --target install
|
|
|
|
if ERRORLEVEL 1 goto error
|
|
|
|
popd
|
|
|
|
|
|
|
|
echo.
|
|
|
|
echo --- Test installed library
|
|
|
|
echo.
|
|
|
|
set WXWIN=%WX_INSTALL_PATH%
|
|
|
|
mkdir build_cmake_install_test
|
|
|
|
pushd build_cmake_install_test
|
|
|
|
echo --- Configure minimal sample
|
|
|
|
cmake -G "%GENERATOR%" ..\samples\minimal
|
|
|
|
if ERRORLEVEL 1 goto error
|
|
|
|
echo --- Building minimal sample with installed library
|
|
|
|
cmake --build . --config %CONFIGURATION%
|
|
|
|
if ERRORLEVEL 1 goto error
|
|
|
|
popd
|
|
|
|
)
|
2016-10-05 04:16:30 -04:00
|
|
|
popd
|
|
|
|
|
|
|
|
goto :eof
|
2016-11-03 16:28:26 -04:00
|
|
|
|
|
|
|
:error
|
|
|
|
echo.
|
|
|
|
echo --- Build failed !
|
|
|
|
echo.
|