Skip to content

Commit

Permalink
Build mods for x64 to fix build errors on 2.206. (#56)
Browse files Browse the repository at this point in the history
2.206 is now 64-bit on Windows.
  • Loading branch information
davidkra230 authored Jun 7, 2024
1 parent a9a65f5 commit 1b9456e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/project_build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pub fn build_project(
fail!("Sorry! but this cannot cross-compile to windows yet.");
fatal!("See the docs for more info: https://docs.geode-sdk.org/getting-started/cpp-stuff#linux");
}
conf_args.extend(["-A", "Win32"].map(String::from));
conf_args.extend(["-A", "x64"].map(String::from));
}
"mac" => {
if cross_compiling {
Expand Down

0 comments on commit 1b9456e

Please sign in to comment.