1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-07-13 17:07:45 +00:00

Make link search path added in build script more explicit

Doesn't fix our doctest issue, but we should probably do this
anyway.
This commit is contained in:
Joshua Goins 2025-07-11 22:28:25 -04:00
parent f7c73a14a6
commit 14c5a68be5

View file

@ -4,7 +4,10 @@ use serde_json::Value;
fn main() { fn main() {
// Add link search directory for Oodle // Add link search directory for Oodle
println!("cargo:rustc-link-search=./oodle"); println!(
"cargo:rustc-link-search={}/oodle",
env!("CARGO_MANIFEST_DIR")
);
// Generate IPC opcodes // Generate IPC opcodes
{ {