2023-11-29 01:20:01 +00:00
|
|
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
2023-12-03 01:12:21 +00:00
|
|
|
//
|
2023-11-29 01:20:01 +00:00
|
|
|
// This software may be used and distributed according to the terms of the
|
|
|
|
// GNU General Public License version 2.
|
|
|
|
|
2024-06-19 05:07:29 +01:00
|
|
|
use vergen::EmitBuilder;
|
2024-02-28 07:28:18 +00:00
|
|
|
include!("src/builder.rs");
|
2024-01-31 20:50:17 +00:00
|
|
|
|
|
|
|
fn main() {
|
2024-06-19 05:07:29 +01:00
|
|
|
Builder::new().build();
|
|
|
|
EmitBuilder::builder()
|
2024-08-20 08:51:47 +01:00
|
|
|
.git_sha(true)
|
|
|
|
.git_dirty(true)
|
2024-06-19 05:07:29 +01:00
|
|
|
.cargo_target_triple()
|
|
|
|
.emit()
|
|
|
|
.unwrap();
|
2024-01-31 20:50:17 +00:00
|
|
|
}
|