mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-25 06:41:31 +11:00
Merge pull request #490 from tomaka/test-with-msvc
Test glutin with MSVC++
This commit is contained in:
commit
6b5d0e6e28
|
@ -22,7 +22,7 @@ shared_library = "0.1.0"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
gl_generator = "0.0.26"
|
gl_generator = "0.0.26"
|
||||||
khronos_api = "0.0.6"
|
khronos_api = "0.0.7"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
clock_ticks = "0.0.5"
|
clock_ticks = "0.0.5"
|
||||||
|
|
30
appveyor.yml
30
appveyor.yml
|
@ -1,19 +1,21 @@
|
||||||
|
environment:
|
||||||
|
CARGO_TARGET: x86_64-pc-windows-gnu
|
||||||
|
matrix:
|
||||||
|
- TARGET: x86_64-pc-windows-msvc
|
||||||
|
- TARGET: i686-pc-windows-gnu
|
||||||
install:
|
install:
|
||||||
- ps: |
|
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rustc-nightly-${env:TARGET}.tar.gz"
|
||||||
if ($env:PLATFORM -eq "x86") {
|
- ps: Start-FileDownload "https://static.rust-lang.org/cargo-dist/cargo-nightly-${env:CARGO_TARGET}.tar.gz"
|
||||||
Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.0.0-i686-pc-windows-gnu.exe' -FileName rust.exe
|
- 7z x rustc-nightly-%TARGET%.tar.gz > nul
|
||||||
} else {
|
- 7z x rustc-nightly-%TARGET%.tar > nul
|
||||||
Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.0.0-x86_64-pc-windows-gnu.exe' -FileName rust.exe
|
- 7z x cargo-nightly-%CARGO_TARGET%.tar.gz > nul
|
||||||
}
|
- 7z x cargo-nightly-%CARGO_TARGET%.tar > nul
|
||||||
- rust.exe /VERYSILENT /NORESTART /DIR="C:\Program Files\Rust"
|
- call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64
|
||||||
- SET PATH=%PATH%;C:\Program Files\Rust\bin
|
- set PATH=%PATH%;%cd%/rustc-nightly-%TARGET%/rustc/bin
|
||||||
- rustc -vV
|
- set PATH=%PATH%;%cd%/cargo-nightly-%CARGO_TARGET%/cargo/bin
|
||||||
|
- SET PATH=%PATH%;C:\MinGW\bin
|
||||||
|
- rustc -V
|
||||||
- cargo -V
|
- cargo -V
|
||||||
- git submodule update --init --recursive
|
|
||||||
|
|
||||||
platform:
|
|
||||||
- x86
|
|
||||||
- x64
|
|
||||||
|
|
||||||
build: false
|
build: false
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue