-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
820 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
/projects/unix/_obj*/ | ||
/projects/unix/libmupen64plus*.so* | ||
/subprojects/packagecache/ | ||
/subprojects/libpng-*/ | ||
/subprojects/SDL2-*/ | ||
/subprojects/zlib-*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,51 @@ | ||
version: 1.0.{build} | ||
|
||
configuration: | ||
- New_Dynarec_Release | ||
- Release | ||
|
||
platform: | ||
- x86 | ||
- x64 | ||
|
||
environment: | ||
matrix: | ||
- compiler: msvc2013 | ||
meson_configure: -Dnew_dynarec=true | ||
- compiler: msvc2013 | ||
meson_configure: -Dnew_dynarec=false | ||
|
||
matrix: | ||
exclude: | ||
- platform: x64 | ||
configuration: New_Dynarec_Release | ||
meson_configure: -Dnew_dynarec=true | ||
|
||
install: | ||
- cmd: set ORIG_PATH=%PATH% | ||
# XXX Use a Ninja with QuLogic's patch: https://github.com/ninja-build/ninja/issues/1219 | ||
# Use the x86 python only when building for x86 for the cpython tests. | ||
# For all other archs (including, say, arm), use the x64 python. | ||
- cmd: if %platform%==x86 (set MESON_PYTHON_PATH=C:\Python36) else (set MESON_PYTHON_PATH=C:\Python36-x64) | ||
- cmd: set MESON_FIXED_NINJA=1 | ||
- cmd: echo "MESON_PYTHON_PATH=%MESON_PYTHON_PATH%" | ||
- cmd: curl -fsS -o "%MESON_PYTHON_PATH%\Scripts\ninja.exe" https://nirbheek.in/files/binaries/ninja/win32/ninja.exe | ||
- cmd: if %compiler%==msvc2010 (call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" %platform%) | ||
- cmd: if %compiler%==msvc2013 (call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %platform%) | ||
- cmd: if %compiler%==msvc2015 (call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %platform%) | ||
- cmd: set PATH=%MESON_PYTHON_PATH%;%MESON_PYTHON_PATH%\Scripts;%PATH% | ||
- cmd: echo %PATH% | ||
- cmd: python.exe --version | ||
- cmd: ninja.exe --version | ||
- cmd: python.exe -m pip install meson | ||
# Commented until nasm update is merged upsteam | ||
# - cmd: git clone --depth 1 https://github.com/mupen64plus/mupen64plus-win32-deps.git ../mupen64plus-win32-deps | ||
- cmd: git clone --depth 1 --branch nasm_2_13_03 https://github.com/bsmiles32/mupen64plus-win32-deps.git ../mupen64plus-win32-deps | ||
|
||
build_script: | ||
- cmd: echo Building on %platform% with %compiler% | ||
# FIXME: disable OSD and opencv for now, because missing dependencies | ||
- cmd: python.exe %MESON_PYTHON_PATH%\Scripts\meson.py --backend=ninja -Dopencv=false %meson_configure% builddir | ||
- cmd: python.exe %MESON_PYTHON_PATH%\Scripts\meson.py configure builddir | ||
- cmd: ninja.exe -C builddir | ||
|
||
before_build: | ||
- cmd: git clone --depth 1 https://github.com/mupen64plus/mupen64plus-win32-deps.git ../mupen64plus-win32-deps | ||
build: | ||
project: projects/VisualStudio2013/mupen64plus-core.vcxproj | ||
verbosity: minimal | ||
on_finish: | ||
- cmd: set PATH=%ORIG_PATH% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[binaries] | ||
c = '/usr/lib/mxe/usr/bin/i686-w64-mingw32.shared-gcc' | ||
cpp = '/usr/lib/mxe/usr/bin/i686-w64-mingw32.shared-g++' | ||
ar = '/usr/lib/mxe/usr/bin/i686-w64-mingw32.shared-ar' | ||
pkgconfig = '/usr/lib/mxe/usr/bin/i686-w64-mingw32.shared-pkg-config' | ||
strip = '/usr/lib/mxe/usr/bin/i686-w64-mingw32.shared-strip' | ||
|
||
[properties] | ||
needs_exe_wrapper = true | ||
|
||
[host_machine] | ||
system = 'windows' | ||
cpu_family = 'x86' | ||
cpu = 'i686' | ||
endian = 'little' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[binaries] | ||
c = '/usr/lib/mxe/usr/bin/x86_64-w64-mingw32.shared-gcc' | ||
cpp = '/usr/lib/mxe/usr/bin/x86_64-w64-mingw32.shared-g++' | ||
ar = '/usr/lib/mxe/usr/bin/x86_64-w64-mingw32.shared-ar' | ||
pkgconfig = '/usr/lib/mxe/usr/bin/x86_64-w64-mingw32.shared-pkg-config' | ||
strip = '/usr/lib/mxe/usr/bin/x86_64-w64-mingw32.shared-strip' | ||
|
||
[properties] | ||
needs_exe_wrapper = true | ||
|
||
[host_machine] | ||
system = 'windows' | ||
cpu_family = 'x86_64' | ||
cpu = 'x86_64' | ||
endian = 'little' |
Oops, something went wrong.