-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.rs
More file actions
12 lines (11 loc) · 538 Bytes
/
build.rs
File metadata and controls
12 lines (11 loc) · 538 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright notice and licensing information.
// These lines indicate the copyright of the software and its licensing terms.
// SPDX-License-Identifier: Apache-2.0 OR MIT indicates dual licensing under Apache 2.0 or MIT licenses.
// Copyright © 2023-2024 LibMake. All rights reserved.
//! This is the main function for the build script.
//!
//! Currently, it only instructs Cargo to re-run this build script if `build.rs` is changed.
fn main() {
// Avoid unnecessary re-building.
println!("cargo:rerun-if-changed=build.rs");
}