2020-04-21 14:33:17 -04:00
|
|
|
project('picom', 'c', version: '8',
|
2018-12-19 18:37:45 -05:00
|
|
|
default_options: ['c_std=c11'])
|
2018-10-14 19:38:21 -04:00
|
|
|
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
|
2018-12-15 11:40:00 -05:00
|
|
|
# use project version by default
|
|
|
|
version = 'v'+meson.project_version()
|
|
|
|
|
|
|
|
# use git describe if that's available
|
2018-10-16 19:17:40 -04:00
|
|
|
git = find_program('git', required: false)
|
|
|
|
if git.found()
|
2019-07-30 17:22:21 -04:00
|
|
|
gitv = run_command('git', 'rev-parse', '--short=5', 'HEAD')
|
2018-10-16 19:17:40 -04:00
|
|
|
if gitv.returncode() == 0
|
2019-07-30 17:22:21 -04:00
|
|
|
version = 'vgit-'+gitv.stdout().strip()
|
2018-10-16 19:17:40 -04:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2018-10-16 05:29:52 -04:00
|
|
|
add_global_arguments('-DCOMPTON_VERSION="'+version+'"', language: 'c')
|
2018-10-14 19:38:21 -04:00
|
|
|
|
2018-10-15 06:16:32 -04:00
|
|
|
if get_option('buildtype') == 'release'
|
2018-12-19 18:37:45 -05:00
|
|
|
add_global_arguments('-DNDEBUG', language: 'c')
|
2018-10-15 06:16:32 -04:00
|
|
|
endif
|
|
|
|
|
2018-10-14 19:38:21 -04:00
|
|
|
if get_option('sanitize')
|
|
|
|
sanitizers = ['address', 'undefined']
|
|
|
|
if cc.has_argument('-fsanitize=integer')
|
|
|
|
sanitizers += ['integer']
|
|
|
|
endif
|
|
|
|
if cc.has_argument('-fsanitize=nullability')
|
|
|
|
sanitizers += ['nullability']
|
|
|
|
endif
|
|
|
|
add_global_arguments('-fsanitize='+','.join(sanitizers), language: 'c')
|
|
|
|
add_global_link_arguments('-fsanitize='+','.join(sanitizers), language: 'c')
|
2019-04-03 03:36:02 -04:00
|
|
|
if cc.has_argument('-fno-sanitize=unsigned-integer-overflow')
|
|
|
|
add_global_arguments('-fno-sanitize=unsigned-integer-overflow', language: 'c')
|
|
|
|
endif
|
2018-10-14 19:38:21 -04:00
|
|
|
endif
|
|
|
|
|
2019-01-20 11:53:39 -05:00
|
|
|
if get_option('modularize')
|
|
|
|
if not cc.has_argument('-fmodules')
|
|
|
|
error('option \'modularize\' requires clang')
|
|
|
|
endif
|
|
|
|
add_global_arguments(['-fmodules',
|
|
|
|
'-fmodule-map-file='+
|
|
|
|
meson.current_source_dir()+
|
2019-10-23 14:27:30 -04:00
|
|
|
'/src/picom.modulemap'],
|
2019-01-20 11:53:39 -05:00
|
|
|
language: 'c')
|
|
|
|
endif
|
|
|
|
|
2018-10-14 19:38:21 -04:00
|
|
|
add_global_arguments('-D_GNU_SOURCE', language: 'c')
|
|
|
|
|
2019-04-13 22:45:04 -04:00
|
|
|
if cc.has_header('stdc-predef.h')
|
|
|
|
add_global_arguments('-DHAS_STDC_PREDEF_H', language: 'c')
|
|
|
|
endif
|
|
|
|
|
2019-07-24 20:02:23 -04:00
|
|
|
warns = [ 'all', 'cast-function-type', 'ignored-qualifiers', 'missing-parameter-type',
|
|
|
|
'nonnull', 'shadow', 'no-type-limits', 'old-style-declaration', 'override-init',
|
|
|
|
'sign-compare', 'type-limits', 'uninitialized', 'shift-negative-value',
|
|
|
|
'unused-but-set-parameter', 'unused-parameter', 'implicit-fallthrough',
|
2019-07-24 20:57:38 -04:00
|
|
|
'no-unknown-warning-option', 'no-missing-braces', 'conversion', 'empty-body' ]
|
2018-10-14 19:38:21 -04:00
|
|
|
foreach w : warns
|
|
|
|
if cc.has_argument('-W'+w)
|
|
|
|
add_global_arguments('-W'+w, language: 'c')
|
|
|
|
endif
|
|
|
|
endforeach
|
|
|
|
|
2019-03-18 18:34:59 -04:00
|
|
|
test_h_dep = subproject('test.h').get_variable('test_h_dep')
|
|
|
|
|
2018-10-14 19:38:21 -04:00
|
|
|
subdir('src')
|
|
|
|
subdir('man')
|
|
|
|
|
2019-10-23 14:27:30 -04:00
|
|
|
install_data('bin/picom-trans', install_dir: get_option('bindir'))
|
|
|
|
install_data('picom.desktop', install_dir: 'share/applications')
|
|
|
|
|
2020-05-28 10:03:33 -04:00
|
|
|
if get_option('compton')
|
|
|
|
install_data('compton.desktop', install_dir: 'share/applications')
|
|
|
|
install_data('media/icons/48x48/compton.png',
|
|
|
|
install_dir: 'share/icons/hicolor/48x48/apps')
|
|
|
|
install_data('media/compton.svg',
|
|
|
|
install_dir: 'share/icons/hicolor/scalable/apps')
|
|
|
|
|
|
|
|
meson.add_install_script('meson/install.sh')
|
|
|
|
endif
|