cgmath/src/lmath.rc
Brendan Zabarauskas aa304bedae Rename library to lmath
Yes, I still can't decide! I think this will be the last time though.
2012-11-02 09:14:07 +10:00

26 lines
506 B
Plaintext

#[link(name = "lmath",
vers = "0.1",
author = "Brendan Zabarauskas",
url = "https://github.com/bjz/llama-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;
}