aboutsummaryrefslogtreecommitdiffstats
path: root/build.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2015-01-21 10:58:08 -0500
committerJosh Matthews <josh@joshmatthews.net>2015-01-21 10:58:08 -0500
commite12e4bf38f30c74df35ca416ee2b7abbdb803526 (patch)
tree05475932fb76615939f81a3224fb939095a9f2b9 /build.rs
parent862baf82204c373d17e2878871826a457529a03f (diff)
downloadglutin-e12e4bf38f30c74df35ca416ee2b7abbdb803526.tar.gz
glutin-e12e4bf38f30c74df35ca416ee2b7abbdb803526.zip
Fix OS X build.
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/build.rs b/build.rs
index 166c223..f49b47f 100644
--- a/build.rs
+++ b/build.rs
@@ -50,7 +50,15 @@ fn main() {
khronos_api::EGL_XML, vec![],
"1.5", "core", &mut file).unwrap();
}
-
+
+ if target.contains("darwin") {
+ let mut file = File::create(&dest.join("gl_bindings.rs")).unwrap();
+ gl_generator::generate_bindings(gl_generator::GlobalGenerator,
+ gl_generator::registry::Ns::Gl,
+ khronos_api::GL_XML,
+ vec!["GL_EXT_framebuffer_object".to_string()],
+ "3.2", "core", &mut file).unwrap();
+ }
// TODO: only build the bindings below if we run tests/examples