-
-
Notifications
You must be signed in to change notification settings - Fork 193
Events as types #2866
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
Events as types #2866
Changes from 18 commits
620dd13
df2cb28
f38f67d
ff504cf
5592186
16b3c62
01ac359
1cbb21a
ae16114
f4b65ef
b0654aa
c6822c7
51fd400
e9d250d
cb22bbc
245ed1a
c900dcb
09d77eb
c736fe7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,12 +24,12 @@ option('midi', type: 'feature', value: 'enabled') | |
# Controls whether to make a "stripped" pygame install. Enabling this disables | ||
# the bundling of docs/examples/tests/stubs in the wheels. | ||
# The default behaviour is to bundle all of these. | ||
option('stripped', type: 'boolean', value: 'false') | ||
option('stripped', type: 'boolean', value: false) | ||
|
||
# Controls whether to compile with -Werror (or its msvc equivalent). The default | ||
# behaviour is to not do this by default | ||
option('error_on_warns', type: 'boolean', value: 'false') | ||
option('error_on_warns', type: 'boolean', value: false) | ||
|
||
# Controls whether to error on build if generated docs are missing. Defaults to | ||
# false. | ||
option('error_docs_missing', type: 'boolean', value: 'false') | ||
Comment on lines
-27
to
-35
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. Are these changes intentional? 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. My meson plugin warned that using booleans with quotes is deprecated and I saw that everywhere else no quotes were used, so it's nothing important, should I revert this? |
||
option('error_docs_missing', type: 'boolean', value: false) |
Uh oh!
There was an error while loading. Please reload this page.