mirror of
https://github.com/macalimlim/ftw
synced 2024-11-10 12:34:11 +00:00
remove clean to use incremental compilation
This commit is contained in:
parent
0a261c12d9
commit
ecdb598582
1 changed files with 0 additions and 2 deletions
|
@ -418,7 +418,6 @@ impl Processor for FtwCommand {
|
|||
}
|
||||
FtwCommand::Build { targets, build_type } => {
|
||||
FtwCommand::is_valid_project()?;
|
||||
FtwCommand::clean()?;
|
||||
for target in targets {
|
||||
FtwCommand::build_lib(*target, *build_type)?;
|
||||
thread::sleep(time::Duration::from_millis(100));
|
||||
|
@ -427,7 +426,6 @@ impl Processor for FtwCommand {
|
|||
}
|
||||
FtwCommand::Export { targets, build_type } => {
|
||||
FtwCommand::is_valid_project()?;
|
||||
FtwCommand::clean()?;
|
||||
for target in targets {
|
||||
FtwCommand::build_lib(*target, *build_type)?;
|
||||
FtwCommand::export_game(*target, *build_type)?;
|
||||
|
|
Loading…
Reference in a new issue