summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: b053e0cca3cf3845c94568ce3ecd598311a72620 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod transforms;

#[cfg(not(target_os = "emscripten"))]
extern crate gtk;
#[cfg(not(target_os = "emscripten"))]
extern crate cairo;
#[cfg(not(target_os = "emscripten"))]
pub mod gui;

#[cfg(not(target_os = "emscripten"))]
extern crate portaudio;
#[cfg(not(target_os = "emscripten"))]
pub mod audio;

#[cfg(target_os = "emscripten")]
pub mod emscripten_api;