mirror of
https://github.com/yshui/picom.git
synced 2024-11-03 04:33:49 -05:00
b0820d847c
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
65 lines
1.9 KiB
Meson
65 lines
1.9 KiB
Meson
project('compton', 'c', version: '6',
|
|
default_options: ['c_std=c11'])
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
# use project version by default
|
|
version = 'v'+meson.project_version()
|
|
|
|
# use git describe if that's available
|
|
git = find_program('git', required: false)
|
|
if git.found()
|
|
gitv = run_command('git', 'describe')
|
|
if gitv.returncode() == 0
|
|
version = gitv.stdout().strip()
|
|
endif
|
|
endif
|
|
|
|
add_global_arguments('-DCOMPTON_VERSION="'+version+'"', language: 'c')
|
|
|
|
if get_option('buildtype') == 'release'
|
|
add_global_arguments('-DNDEBUG', language: 'c')
|
|
endif
|
|
|
|
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')
|
|
endif
|
|
|
|
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()+
|
|
'/src/compton.modulemap'],
|
|
language: 'c')
|
|
endif
|
|
|
|
add_global_arguments('-D_GNU_SOURCE', language: 'c')
|
|
|
|
warns = [ 'all', 'extra', 'no-unused-parameter', 'nonnull', 'shadow',
|
|
'implicit-fallthrough', 'no-unknown-warning-option', 'no-missing-braces' ]
|
|
foreach w : warns
|
|
if cc.has_argument('-W'+w)
|
|
add_global_arguments('-W'+w, language: 'c')
|
|
endif
|
|
endforeach
|
|
|
|
subdir('src')
|
|
subdir('man')
|
|
|
|
install_subdir('bin', install_dir: '')
|
|
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')
|