97aebf8089
Without these declarations, `nalgebra-lapack` does not have runtime linkage requirements for these libraries, meaning that binaries and libraries using `nalgebra-lapack` have to link `lapack`/`lapack-src` explicitly which shouldn't be necessary.
12 lines
270 B
Rust
12 lines
270 B
Rust
#[macro_use]
|
|
extern crate approx;
|
|
#[cfg(not(feature = "proptest-support"))]
|
|
compile_error!("Tests must be run with `proptest-support`");
|
|
|
|
extern crate nalgebra as na;
|
|
extern crate nalgebra_lapack as nl;
|
|
|
|
mod linalg;
|
|
#[path = "../../tests/proptest/mod.rs"]
|
|
mod proptest;
|