-
-
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] Make it possible to override default cmake options #127
Labels
Comments
Ack. CMake is still "experimental" and you may be the first person to really try to use it for something. Will take a look, but prioritizing it behind some other work at the moment. |
It seems that
|
stanhu
added a commit
to stanhu/mini_portile
that referenced
this issue
Jul 17, 2023
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
stanhu
added a commit
to stanhu/mini_portile
that referenced
this issue
Jul 17, 2023
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
stanhu
added a commit
to stanhu/mini_portile
that referenced
this issue
Jul 17, 2023
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
stanhu
added a commit
to stanhu/mini_portile
that referenced
this issue
Jul 17, 2023
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
stanhu
added a commit
to stanhu/mini_portile
that referenced
this issue
Jul 17, 2023
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While working on mudge/re2#67, I found that the default cmake generator option for Windows builds did not work for the
abseil-cpp
project:I worked around the problem by pruning the
-G
option fromconfigure_options
, but it'd be nice to make it easier to skip this.The text was updated successfully, but these errors were encountered: