diff --git a/.gitignore b/.gitignore index f122054..d6a661b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /target +/oodle .idea/ config.json *.bin diff --git a/USAGE.md b/USAGE.md index 46cd0ad..af7201a 100644 --- a/USAGE.md +++ b/USAGE.md @@ -11,7 +11,7 @@ Kawari is designed to be easy to run, with the goal of being accessible to anyon ## Prerequisites * Linux * Copy of the game updated to the supported game version (see README) -* Oodle (can be obtained from [here](https://github.com/WorkingRobot/OodleUE)) +* Oodle Network Compression (can be obtained from [here](https://github.com/WorkingRobot/OodleUE), place static library (`.a`) into `oodle` directory) ## Setup diff --git a/build.rs b/build.rs new file mode 100644 index 0000000..0e51681 --- /dev/null +++ b/build.rs @@ -0,0 +1,3 @@ +fn main() { + println!("cargo:rustc-link-search=./oodle"); +}