Merge pull request #312 from tomaka/update

Switch to new I/O in build.rs
This commit is contained in:
tomaka 2015-03-13 10:27:38 +01:00
commit fb91645f40
2 changed files with 5 additions and 4 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "glutin"
version = "0.0.7"
version = "0.0.8"
authors = ["tomaka <pierre.krieger1708@gmail.com>"]
description = "Cross-plaform OpenGL context provider. Important: the crates.io only supports Windows and Linux for the moment."
keywords = ["windowing", "opengl"]

View file

@ -1,13 +1,14 @@
#![feature(old_io,old_path,os)]
#![feature(path)]
extern crate gl_generator;
extern crate khronos_api;
use std::env;
use std::old_io::File;
use std::fs::File;
use std::path::PathBuf;
fn main() {
let target = env::var("TARGET").unwrap();
let dest = Path::new(env::var("OUT_DIR").unwrap());
let dest = PathBuf::new(&env::var("OUT_DIR").unwrap());
if target.contains("windows") {
let mut file = File::create(&dest.join("wgl_bindings.rs")).unwrap();