From c0d273cb3baab4e05c5841c4e6494b5d03917360 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Mon, 23 Feb 2026 21:28:00 +0100 Subject: [PATCH] Apply suggestion from @coderabbitai[bot] Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- port/assimp_rs/build.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/port/assimp_rs/build.rs b/port/assimp_rs/build.rs index 2965de4a2..fa37e664e 100644 --- a/port/assimp_rs/build.rs +++ b/port/assimp_rs/build.rs @@ -3,6 +3,9 @@ use std::env; use std::path::PathBuf; fn main() { + // Rerun if wrapper header changes + println!("cargo:rerun-if-changed=./src/assimp_wrapper.h"); + // Tell cargo to look for shared libraries in the specified directory println!("cargo:rustc-link-search=../../lib/");