You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
476 B
Rust
18 lines
476 B
Rust
/******************************************************************************
|
|
* @file build.rs
|
|
* @author Joey Pollack
|
|
* @date 2025/11/20 (y/m/d)
|
|
* @modified 2025/11/20 (y/m/d)
|
|
* @copyright Joseph R Pollack (2025)
|
|
* @brief
|
|
******************************************************************************/
|
|
|
|
// use std::process::Command;
|
|
|
|
fn main()
|
|
{
|
|
let name = env!("CARGO_PKG_NAME");
|
|
println!("{} build.rs started...", name);
|
|
|
|
println!("{} build.rs finished", name);
|
|
} |