-
Notifications
You must be signed in to change notification settings - Fork 30
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
changes made to build without warnings #143
Changes from 18 commits
926d505
a41a598
9b3a985
823be29
a8db4b5
e859eb9
d6884b4
6ba97bc
8779ee9
9b621e4
91cb9a5
1db0113
62395e7
bffe6ec
54d8a0d
6366a4b
69f689b
ecce168
5180540
e5f0d0f
d507361
16c7778
b132bd0
0eefb20
8f2330f
2298066
b92d42a
57c5572
21fe382
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,5 @@ set_target_properties("${PROJECT_NAME}_external_hauserparabolicsmoother" | |
) | ||
target_compile_options("${PROJECT_NAME}_external_hauserparabolicsmoother" | ||
PUBLIC ${AIKIDO_CXX_STANDARD_FLAGS} | ||
PRIVATE -w | ||
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 is this? 😱 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. If I'm correct, this is to ignore warnings from |
||
) |
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.
Nit: We could put multiple options in one function like
add_compile_options(-Wall -Wpedantic)
.