2019-04-13 23:13:51 -04:00
|
|
|
libev = dependency('libev', required: false)
|
|
|
|
if not libev.found()
|
|
|
|
libev = cc.find_library('ev')
|
|
|
|
endif
|
2018-10-03 17:46:18 -04:00
|
|
|
base_deps = [
|
2018-11-03 18:15:38 -04:00
|
|
|
cc.find_library('m'),
|
2019-04-13 23:13:51 -04:00
|
|
|
libev,
|
2018-12-15 14:44:11 -05:00
|
|
|
dependency('xcb', version: '>=1.9.2'),
|
2018-11-03 18:15:38 -04:00
|
|
|
]
|
2018-10-14 19:38:21 -04:00
|
|
|
|
2018-12-20 09:13:14 -05:00
|
|
|
srcs = [ files('compton.c', 'win.c', 'c2.c', 'x.c', 'config.c', 'vsync.c', 'utils.c',
|
2018-12-20 16:57:32 -05:00
|
|
|
'diagnostic.c', 'string_utils.c', 'render.c', 'kernel.c', 'log.c',
|
2019-03-17 09:44:26 -04:00
|
|
|
'options.c', 'event.c') ]
|
2018-10-03 17:46:18 -04:00
|
|
|
compton_inc = include_directories('.')
|
2018-10-14 19:38:21 -04:00
|
|
|
|
2018-11-08 09:53:13 -05:00
|
|
|
cflags = []
|
|
|
|
|
2018-10-03 17:46:18 -04:00
|
|
|
|
2018-11-03 18:15:38 -04:00
|
|
|
required_package = [
|
2018-10-14 19:38:21 -04:00
|
|
|
'x11', 'x11-xcb', 'xcb-renderutil',
|
2018-12-30 02:06:47 -05:00
|
|
|
'xcb-render', 'xcb-damage', 'xcb-randr', 'xcb-sync',
|
2019-02-18 16:04:01 -05:00
|
|
|
'xcb-composite', 'xcb-shape', 'xcb-image', 'xcb-xinerama',
|
2018-11-03 18:15:38 -04:00
|
|
|
'xcb-xfixes', 'xcb-present', 'xext', 'pixman-1'
|
|
|
|
]
|
2018-10-14 19:38:21 -04:00
|
|
|
|
|
|
|
foreach i : required_package
|
2018-10-03 17:46:18 -04:00
|
|
|
base_deps += [dependency(i, required: true)]
|
2018-10-14 19:38:21 -04:00
|
|
|
endforeach
|
|
|
|
|
2019-04-03 03:36:02 -04:00
|
|
|
if not cc.has_header('uthash.h')
|
|
|
|
error('Dependency uthash not found')
|
|
|
|
endif
|
|
|
|
|
2018-10-03 17:46:18 -04:00
|
|
|
deps = []
|
|
|
|
|
2018-10-14 19:38:21 -04:00
|
|
|
if get_option('config_file')
|
2018-12-15 14:44:11 -05:00
|
|
|
deps += [dependency('libconfig', version: '>=1.4', required: true),
|
|
|
|
dependency('libxdg-basedir', required: true)]
|
2018-10-14 19:38:21 -04:00
|
|
|
cflags += ['-DCONFIG_LIBCONFIG']
|
|
|
|
srcs += [ 'config_libconfig.c' ]
|
|
|
|
endif
|
|
|
|
if get_option('regex')
|
|
|
|
pcre = dependency('libpcre', required: true)
|
|
|
|
cflags += ['-DCONFIG_REGEX_PCRE']
|
|
|
|
if pcre.version().version_compare('>=8.20')
|
|
|
|
cflags += ['-DCONFIG_REGEX_PCRE_JIT']
|
|
|
|
endif
|
|
|
|
deps += [pcre]
|
|
|
|
endif
|
|
|
|
|
|
|
|
if get_option('vsync_drm')
|
|
|
|
cflags += ['-DCONFIG_VSYNC_DRM']
|
|
|
|
deps += [dependency('libdrm', required: true)]
|
|
|
|
endif
|
|
|
|
|
|
|
|
if get_option('opengl')
|
2018-10-03 17:46:18 -04:00
|
|
|
cflags += ['-DCONFIG_OPENGL', '-DGL_GLEXT_PROTOTYPES']
|
2018-10-14 19:38:21 -04:00
|
|
|
deps += [dependency('gl', required: true)]
|
|
|
|
srcs += [ 'opengl.c' ]
|
|
|
|
endif
|
|
|
|
|
|
|
|
if get_option('dbus')
|
|
|
|
cflags += ['-DCONFIG_DBUS']
|
|
|
|
deps += [dependency('dbus-1', required: true)]
|
|
|
|
srcs += [ 'dbus.c' ]
|
|
|
|
endif
|
|
|
|
|
|
|
|
if get_option('xrescheck')
|
|
|
|
cflags += ['-DDEBUG_XRC']
|
|
|
|
srcs += [ 'xrescheck.c' ]
|
|
|
|
endif
|
|
|
|
|
2019-03-18 18:34:59 -04:00
|
|
|
if get_option('unittest')
|
|
|
|
cflags += ['-DUNIT_TEST']
|
|
|
|
endif
|
|
|
|
|
2018-10-03 17:46:18 -04:00
|
|
|
subdir('backend')
|
|
|
|
|
2019-03-18 18:34:59 -04:00
|
|
|
compton = executable('compton', srcs, c_args: cflags,
|
|
|
|
dependencies: [ base_deps, deps, test_h_dep ],
|
2018-10-03 17:46:18 -04:00
|
|
|
install: true, include_directories: compton_inc)
|
2019-03-18 18:34:59 -04:00
|
|
|
|
|
|
|
if get_option('unittest')
|
|
|
|
test('compton unittest', compton, args: [ '--unittest' ])
|
|
|
|
endif
|