mirror of
https://github.com/darlinghq/LibrarySymbols.git
synced 2025-02-10 16:42:40 +00:00
10 lines
339 B
Rust
10 lines
339 B
Rust
|
|
|
|
fn main() {
|
|
// Tell cargo to rebuild files that have changed
|
|
println!("cargo::rerun-if-changed=external/dyld-shared-cache-extractor/dyld-shared-cache-extractor.cpp");
|
|
|
|
cc::Build::new()
|
|
.file("external/dyld-shared-cache-extractor/dyld-shared-cache-extractor.cpp")
|
|
.compile("dyld-shared-cache-extractor");
|
|
} |