-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Format with muon fmt. Cleanups.
- Loading branch information
Showing
10 changed files
with
199 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
sphinx_conf_file = configure_file( | ||
input : 'conf.py.in', | ||
input: 'conf.py.in', | ||
output: 'conf.py', | ||
configuration : doc_conf, | ||
configuration: doc_conf, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env python3 | ||
#!/usr/bin/env python | ||
# libmypaint - The MyPaint Brush Library | ||
# Copyright (C) 2007-2012 Martin Renold <[email protected]> | ||
# Copyright (C) 2012-2020 by the MyPaint Development Team. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,50 @@ | ||
option('glib', type: 'boolean', value: true, description: 'Use GLib (forced on by introspection)') | ||
option('gegl', type: 'boolean', value: false, description: 'Enable GEGL based code') | ||
option('openmp', type: 'boolean', value: false, description: 'Compile with OpenMP') | ||
option('gperftools', type: 'boolean', value: false, description: 'Enable gperftools in build, for profiling') | ||
option( | ||
'glib', | ||
type: 'feature', | ||
value: 'auto', | ||
description: 'Use GLib', | ||
) | ||
option( | ||
'gegl', | ||
type: 'feature', | ||
value: 'auto', | ||
description: 'Enable GEGL based code', | ||
) | ||
option( | ||
'openmp', | ||
type: 'feature', | ||
value: 'auto', | ||
description: 'Compile with OpenMP', | ||
) | ||
option( | ||
'gperftools', | ||
type: 'boolean', | ||
value: false, | ||
description: 'Enable gperftools in build, for profiling', | ||
) | ||
|
||
option('profiling', type: 'boolean', value: false, description: 'Turn on profiling') | ||
option( | ||
'profiling', | ||
type: 'boolean', | ||
value: false, | ||
description: 'Turn on profiling', | ||
) | ||
|
||
option('docs', type: 'boolean', value: false, description: 'Enable documentation build') | ||
option('i18n', type: 'boolean', value: true, description: 'Enable internationalization') | ||
option('introspection', type: 'boolean', value: true, description: 'Enable GObject Instrospection') | ||
option( | ||
'docs', | ||
type: 'boolean', | ||
value: false, | ||
description: 'Enable documentation build', | ||
) | ||
option( | ||
'i18n', | ||
type: 'boolean', | ||
value: true, | ||
description: 'Enable internationalization', | ||
) | ||
option( | ||
'introspection', | ||
type: 'boolean', | ||
value: true, | ||
description: 'Enable GObject Instrospection', | ||
) |
Oops, something went wrong.