We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b07b23 commit ce43629Copy full SHA for ce43629
sold/build.rs
@@ -16,7 +16,10 @@ use std::process::Command;
16
fn main() {
17
println!("cargo:rerun-if-changed=../compiler/");
18
if cfg!(target_os = "windows") {
19
- let install_deps = Command::new("cmake").arg("-P").arg("../compiler/scripts/install_deps.cmake").output();
+ let install_deps = Command::new("cmake")
20
+ .arg("-P")
21
+ .arg("../compiler/scripts/install_deps.cmake")
22
+ .output();
23
assert!(install_deps.is_ok());
24
}
25
0 commit comments