Merge pull request #30 from a5huynh/master

cmake build args fix
This commit is contained in:
0/0 2023-04-16 19:01:29 +00:00 committed by GitHub
commit 73a05c7854
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -80,7 +80,8 @@ fn main() {
let code = std::process::Command::new("cmake") let code = std::process::Command::new("cmake")
.arg("--build") .arg("--build")
.arg(".") .arg(".")
.arg("--config Release") .arg("--config")
.arg("Release")
.status() .status()
.expect("Failed to build libwhisper.a"); .expect("Failed to build libwhisper.a");
if code.code() != Some(0) { if code.code() != Some(0) {