mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-23 07:37:46 +00:00
I ended up just stealing this from iolite, which in turn took it from Sapphire. I tried for a few hours to get a Rust Blowfish implementation going, but the one from Physis didn't work. I'll try again later.
7 lines
173 B
Rust
7 lines
173 B
Rust
fn main() {
|
|
cc::Build::new()
|
|
.cpp(true)
|
|
.file("src/blowfish/blowfish.cpp")
|
|
.file("src/blowfish/wrapper.cpp")
|
|
.compile("FFXIVBlowfish")
|
|
}
|