summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2017-09-10 21:58:50 +0200
committerJustin Worthe <justin@worthe-it.co.za>2017-09-10 21:58:50 +0200
commit9f381cd26fee3926ac0128772e23f6e00681e4e1 (patch)
treea20558f8155cff05ac01929bf51fca802e7be684 /src/lib.rs
parentd23fae9da3da625ca87c615a7798570f138aa0f5 (diff)
Added compile flags to disable anything that shouldn't end in a wasm build
- No GTK - No Portaudio
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 45b1f91..3331f72 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,7 +1,13 @@
+pub mod transforms;
+
+#[cfg(not(target_os = "emscripten"))]
extern crate gtk;
+#[cfg(not(target_os = "emscripten"))]
extern crate cairo;
-extern crate portaudio;
-
-pub mod transforms;
+#[cfg(not(target_os = "emscripten"))]
pub mod gui;
+
+#[cfg(not(target_os = "emscripten"))]
+extern crate portaudio;
+#[cfg(not(target_os = "emscripten"))]
pub mod audio;