Initial Commit
This commit is contained in:
42
build.rs
Normal file
42
build.rs
Normal file
@@ -0,0 +1,42 @@
|
||||
use std::error::Error;
|
||||
use vergen::EmitBuilder;
|
||||
|
||||
fn download(url: &str, to: &str) -> Result<(), Box<dyn Error>> {
|
||||
let content = reqwest::blocking::get(url)
|
||||
.unwrap_or_else(|_| panic!("Downloading \"{to}\""))
|
||||
.text()
|
||||
.expect("Convert response to text");
|
||||
|
||||
std::fs::write(to, content)
|
||||
.expect("Write offsets to file");
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn main() -> Result<(), Box<dyn Error>> {
|
||||
|
||||
download(
|
||||
"https://raw.githubusercontent.com/a2x/cs2-dumper/main/generated/client.dll.rs",
|
||||
"./src/sdk/cs2dumper/client.rs"
|
||||
).expect("Failed to download build file");
|
||||
|
||||
download(
|
||||
"https://raw.githubusercontent.com/a2x/cs2-dumper/main/generated/offsets.rs",
|
||||
"./src/sdk/cs2dumper/offsets.rs"
|
||||
).expect("Failed to download build file");
|
||||
|
||||
download(
|
||||
"https://raw.githubusercontent.com/a2x/cs2-dumper/main/generated/engine2.dll.rs",
|
||||
"./src/sdk/cs2dumper/engine2.rs"
|
||||
).expect("Failed to download build file");
|
||||
|
||||
EmitBuilder::builder()
|
||||
.git_sha(true)
|
||||
.git_commit_date()
|
||||
.cargo_debug()
|
||||
.cargo_target_triple()
|
||||
.rustc_semver()
|
||||
.rustc_llvm_version()
|
||||
.emit()?;
|
||||
Ok(())
|
||||
}
|
||||
Reference in New Issue
Block a user