-
-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmake: only use MSYS/NMake generators when available #129
Conversation
@stanhu Thanks for this! I kicked off CI but looks like there are some test failures. |
943ebf3
to
19d9913
Compare
This looks OK to me. @stanhu do you want to write a CHANGELOG entry, and then I can merge and cut a point release for you? |
@flavorjones Sure, should I mark this as v2.9.0? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have a few questions about collecting this info via a log file
When cross-compiling Windows targets with `cmake` in a Linux environment, the MSYS generator may not be available. Supplying `-G MSYS` will cause the build to fail. `cmake --help` will output the available generators. Before including the `-G` option, check that the generator is available. Closes flavorjones#127
This pulls in flavorjones/mini_portile#129. When cross-compiling Windows targets with cmake in a Linux environment, the MSYS generator may not be available. Supplying -G MSYS will cause the build to fail.
This pulls in flavorjones/mini_portile#129. When cross-compiling Windows targets with cmake in a Linux environment, the MSYS generator may not be available. Supplying -G MSYS will cause the build to fail.
This pulls in flavorjones/mini_portile#129. When cross-compiling Windows targets with cmake in a Linux environment, the MSYS generator may not be available. Supplying -G MSYS will cause the build to fail.
When cross-compiling Windows targets with
cmake
in a Linux environment, the MSYS generator may not be available. Supplying-G MSYS
will cause the build to fail.cmake --help
will output the available generators. Before including the-G
option, check that the generator is available.Closes #127