-
Notifications
You must be signed in to change notification settings - Fork 4
ci: bump to v1.5.3; Windows build deferred pending upstream vortex port #86
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
base: main
Are you sure you want to change the base?
Changes from all commits
a145953
d5d47cf
a0444c1
81ccb88
65788e8
d014fee
78d8545
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -88,7 +88,13 @@ set(LOADABLE_EXTENSION_NAME ${TARGET_NAME}_loadable_extension) | |
| build_static_extension(${TARGET_NAME} src/vortex_extension.cpp) | ||
| build_loadable_extension(${TARGET_NAME} "" src/vortex_extension.cpp) | ||
|
|
||
| set(VORTEX_WARNING_FLAGS -Wall -Wextra -Wpedantic) | ||
| # MSVC's `cl` does not understand the GCC/Clang warning flags, so use the | ||
| # equivalent high warning level there instead of dropping warnings entirely. | ||
| if(MSVC) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What happens if I build on Windows with clang? Ideally, we would also build with Clang on Windows, using the same compiler flags. |
||
| set(VORTEX_WARNING_FLAGS /W4) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we clean up the PR title and description here? |
||
| else() | ||
| set(VORTEX_WARNING_FLAGS -Wall -Wextra -Wpedantic) | ||
| endif() | ||
|
|
||
| target_compile_options(${EXTENSION_NAME} PRIVATE ${VORTEX_WARNING_FLAGS}) | ||
| target_link_libraries(${EXTENSION_NAME} | ||
|
|
||
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.
Worth noting in the comment that
MSVCis set even for clang builds by CMake.