Skip to content

Commit

Permalink
Add JOM generator support
Browse files Browse the repository at this point in the history
  • Loading branch information
Yury Samkevich committed Jul 7, 2023
1 parent 3ddc3d5 commit 0333a6d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,8 @@ impl Config {
cmd.arg("-G").arg(self.visual_studio_generator(&target));
false
} else {
generator.as_ref().unwrap() == "NMake Makefiles"
generator.as_ref().unwrap() == "NMake Makefiles" ||
generator.as_ref().unwrap() == "NMake Makefiles JOM"
}
};
if !is_ninja && !using_nmake_generator {
Expand Down

0 comments on commit 0333a6d

Please sign in to comment.