sep-sys 1.3.0

Low-level bindings to SEP - C library for Source Extraction and Photometry
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    cc::Build::new()
        .define("_USE_MATH_DEFINES", "")
        .files(
            std::fs::read_dir("src/sep/src")
                .unwrap()
                .map(|entry| entry.unwrap().path())
                .filter(|path| path.extension().is_some_and(|ext| ext == "c")),
        )
        .compile("sep");
}