From aa0d36fd1fb5a09a0e09c343f8b6b0585b30b1dd Mon Sep 17 00:00:00 2001 From: vandomej Date: Wed, 10 Sep 2025 22:43:32 -0700 Subject: [PATCH] Adjusting linux build path --- evolved-npcs/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evolved-npcs/build.rs b/evolved-npcs/build.rs index 740f308..36ec6a8 100644 --- a/evolved-npcs/build.rs +++ b/evolved-npcs/build.rs @@ -10,7 +10,7 @@ fn main() { } else if target.contains("linux") { // Linux-specific linking // OR if you have a custom location for Linux libs - let lib_dir = "~/evolved-npcs/ai_fighter/AI_Fight_Sim/Plugins/NeuralNetworkAIController/Source/NeuralNetworkAIController/ThirdParty/FANN/lib/linux/x86_64-unknown-linux-gnu/"; + let lib_dir = "/home/tepichord/evolved-npcs/ai_fighter/AI_Fight_Sim/Plugins/NeuralNetworkAIController/Source/NeuralNetworkAIController/ThirdParty/FANN/lib/linux/x86_64-unknown-linux-gnu/"; let lib_path = std::path::Path::new(&lib_dir).join("libfann.a"); if lib_path.exists() { println!("cargo:rustc-link-search=native={}", lib_dir);