1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-23 07:37:46 +00:00
kawari/build.rs
Joshua Goins 942a64cd7b Fix encrypting/decrypting packets, vendor Sapphire Blowfish implementation
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.
2025-03-08 21:13:00 -05:00

7 lines
173 B
Rust

fn main() {
cc::Build::new()
.cpp(true)
.file("src/blowfish/blowfish.cpp")
.file("src/blowfish/wrapper.cpp")
.compile("FFXIVBlowfish")
}