lukaj 0.2.0

Interactive diff tool for SVG images
Documentation
1
2
3
4
5
6
7
fn main() {
    // fix for static linking issue (undefined references to 'deflate')
    // caused by wrong order of -lz -png (defining group with correct order
    // fixes that)
    #[cfg(target_os="linux")]
    println!("cargo:rustc-link-arg=-Wl,--start-group,-lpng,-lz,--end-group");
}