mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 06:11:30 +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]
|
||||
gl_generator = "0.0.26"
|
||||
khronos_api = "0.0.6"
|
||||
khronos_api = "0.0.7"
|
||||
|
||||
[dev-dependencies]
|
||||
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:
|
||||
- ps: |
|
||||
if ($env:PLATFORM -eq "x86") {
|
||||
Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.0.0-i686-pc-windows-gnu.exe' -FileName rust.exe
|
||||
} else {
|
||||
Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.0.0-x86_64-pc-windows-gnu.exe' -FileName rust.exe
|
||||
}
|
||||
- rust.exe /VERYSILENT /NORESTART /DIR="C:\Program Files\Rust"
|
||||
- SET PATH=%PATH%;C:\Program Files\Rust\bin
|
||||
- rustc -vV
|
||||
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rustc-nightly-${env:TARGET}.tar.gz"
|
||||
- ps: Start-FileDownload "https://static.rust-lang.org/cargo-dist/cargo-nightly-${env:CARGO_TARGET}.tar.gz"
|
||||
- 7z x rustc-nightly-%TARGET%.tar.gz > nul
|
||||
- 7z x rustc-nightly-%TARGET%.tar > nul
|
||||
- 7z x cargo-nightly-%CARGO_TARGET%.tar.gz > nul
|
||||
- 7z x cargo-nightly-%CARGO_TARGET%.tar > nul
|
||||
- call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64
|
||||
- set PATH=%PATH%;%cd%/rustc-nightly-%TARGET%/rustc/bin
|
||||
- set PATH=%PATH%;%cd%/cargo-nightly-%CARGO_TARGET%/cargo/bin
|
||||
- SET PATH=%PATH%;C:\MinGW\bin
|
||||
- rustc -V
|
||||
- cargo -V
|
||||
- git submodule update --init --recursive
|
||||
|
||||
platform:
|
||||
- x86
|
||||
- x64
|
||||
|
||||
build: false
|
||||
|
||||
|
|
Loading…
Reference in a new issue