-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Fix CI to make actual release builds on Windows #346
Conversation
Alright, now we can see the actual failures:
|
CMAKE_BUILD_TYPE only applies on single-configuration generators: https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html For multi-configuration generators like Visual Studio (or Xcode) --config needs to be used in order to build that specific configuration.
I propose a more generic approach:
|
👍 I'll try that now! |
@chqrlie Adopted your suggestion, thasnk for reviewing! I used |
Good point! you might then rename |
Did that too! |
CMAKE_BUILD_TYPE only applies on single-configuration generators: https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html
For multi-configuration generators like Visual Studio (or Xcode) --config needs to be used in order to build that specific configuration.