Files
nullndvoid f5f5aeb8dc
Continuous integration / build (push) Has been cancelled
Formatting changes, called 'cargo fmt'
2025-02-22 03:09:46 +00:00

11 lines
283 B
Rust

use cc;
use std::process::Command;
use std::{env, path::Path};
fn main() {
// Tell cargo to rerun if these files change
println!("cargo:rerun-if-changed=src");
println!("cargo:rerun-if-changed=linker.ld");
println!("cargo:rerun-if-changed=../config/limine.conf");
}