Merge pull request #321 from SSheldon/objc_lib

Use objc crate for Objective-C runtime functionality
This commit is contained in:
Brendan Zabarauskas 2015-03-26 09:58:26 +11:00
commit eeb314d3aa
3 changed files with 64 additions and 101 deletions

View file

@ -38,6 +38,9 @@ extern crate gdi32_sys as gdi32;
#[cfg(target_os = "windows")]
extern crate user32_sys as user32;
#[cfg(target_os = "macos")]
#[macro_use]
extern crate objc;
#[cfg(target_os = "macos")]
extern crate cocoa;
#[cfg(target_os = "macos")]
extern crate core_foundation;