Switch back to MinGW makefiles

trying^2
Bradlee Speice 2020-01-12 17:56:12 -05:00
parent 05f0ad5067
commit 18ddd92948
1 changed files with 3 additions and 7 deletions

View File

@ -59,13 +59,9 @@ pub fn main() {
_ => (), _ => (),
}; };
let mut config = Config::new(&aeron_path); let cmake_output = Config::new(&aeron_path)
let config = if cfg!(target_os = "windows") { .build_target(link_type.target_name())
config.generator("MSYS Makefiles") .build();
} else {
&mut config
};
let cmake_output = config.build_target(link_type.target_name()).build();
// Trying to figure out the final path is a bit weird; // Trying to figure out the final path is a bit weird;
// For Linux/OSX, it's just build/lib // For Linux/OSX, it's just build/lib