cgmath/src/omath.rc
2012-11-01 11:59:53 +10:00

26 lines
506 B
Plaintext

#[link(name = "omath",
vers = "0.1",
author = "Brendan Zabarauskas",
url = "https://github.com/bjz/omath-rs")];
#[comment = "A generic linear algebra library."];
#[license = "APL2"];
#[crate_type = "lib"];
extern mod std;
pub mod matrix;
pub mod math;
pub mod num_util;
pub mod projection;
pub mod quaternion;
pub mod vector;
#[test]
pub mod test {
pub mod test_matrix;
pub mod test_math;
pub mod test_projection;
pub mod test_quaternion;
pub mod test_vector;
}