1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-02 03:12:25 +01:00

Reorganise build script into modules

This commit is contained in:
cyqsimon
2023-10-30 17:49:50 +08:00
committed by Martin Nordholts
parent f3a5e9a73c
commit 79a03b4299
4 changed files with 35 additions and 31 deletions

10
build/main.rs Normal file
View File

@@ -0,0 +1,10 @@
#[cfg(feature = "application")]
mod application;
mod util;
fn main() -> anyhow::Result<()> {
#[cfg(feature = "application")]
application::gen_man_and_comp()?;
Ok(())
}