summaryrefslogtreecommitdiffstats
path: root/third_party/rust/khronos-egl/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/khronos-egl/build.rs')
-rw-r--r--third_party/rust/khronos-egl/build.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/rust/khronos-egl/build.rs b/third_party/rust/khronos-egl/build.rs
new file mode 100644
index 0000000000..420a5fff90
--- /dev/null
+++ b/third_party/rust/khronos-egl/build.rs
@@ -0,0 +1,12 @@
+#[cfg(all(feature = "static", not(feature = "no-pkg-config")))]
+extern crate pkg_config;
+
+fn main() {
+ #[cfg(all(feature = "static", not(feature = "no-pkg-config")))]
+ {
+ pkg_config::Config::new()
+ .atleast_version("1")
+ .probe("egl")
+ .unwrap();
+ }
+}