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:
parent
f7c73a14a6
commit
14c5a68be5
1 changed files with 4 additions and 1 deletions
5
build.rs
5
build.rs
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue