lyric-decoder 0.1.0

decoder for KRC/QRC file in C
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    cc::Build::new()
        .file("LyricDecoder/LyricDecoder.c")
        .file("LyricDecoder/QQMusicDES/des.c")
        .include("LyricDecoder")
        .include("LyricDecoder/QQMusicDES")
        .include("LyricDecoder/zlib")
        .compile("LyricDecoder");
    println!("cargo:rustc-link-lib=z");
    println!("cargo:rustc-link-lib=LyricDecoder");
}