mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Try to rearrange the file order?
This commit is contained in:
parent
c8dc9b64dd
commit
a7fa5621ce
1 changed files with 3 additions and 2 deletions
|
@ -71,12 +71,13 @@ fn build_library(src_path: &Path, language: &str) -> Result<()> {
|
|||
command
|
||||
.args(&["/nologo", "/LD", "/I"])
|
||||
.arg(header_path)
|
||||
.arg("/Od")
|
||||
.arg(parser_path);
|
||||
.arg("/Od");
|
||||
if let Some(scanner_path) = scanner_path.as_ref() {
|
||||
command.arg(scanner_path);
|
||||
}
|
||||
|
||||
command
|
||||
.arg(parser_path)
|
||||
.arg("/link")
|
||||
.arg(format!("/out:{}", library_path.to_str().unwrap()));
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue