2019-04-14 11:13:51 +08:00
|
|
|
libev = dependency('libev', required: false)
|
|
|
|
if not libev.found()
|
|
|
|
libev = cc.find_library('ev')
|
|
|
|
endif
|
2018-10-04 05:46:18 +08:00
|
|
|
base_deps = [
|
2018-11-04 06:15:38 +08:00
|
|
|
cc.find_library('m'),
|
2019-10-12 01:11:45 +08:00
|
|
|
libev
|
2018-11-04 06:15:38 +08:00
|
|
|
]
|
2018-10-15 07:38:21 +08:00
|
|
|
|
2019-10-24 02:27:30 +08:00
|
|
|
srcs = [ files('picom.c', 'win.c', 'c2.c', 'x.c', 'config.c', 'vsync.c', 'utils.c',
|
2018-12-21 05:57:32 +08:00
|
|
|
'diagnostic.c', 'string_utils.c', 'render.c', 'kernel.c', 'log.c',
|
2019-11-11 02:58:01 +08:00
|
|
|
'options.c', 'event.c', 'cache.c', 'atom.c', 'file_watch.c') ]
|
2019-10-24 02:27:30 +08:00
|
|
|
picom_inc = include_directories('.')
|
2018-10-15 07:38:21 +08:00
|
|
|
|
2018-11-08 22:53:13 +08:00
|
|
|
cflags = []
|
|
|
|
|
2019-10-12 01:11:45 +08:00
|
|
|
required_xcb_packages = [
|
|
|
|
'xcb-render', 'xcb-damage', 'xcb-randr', 'xcb-sync', 'xcb-composite',
|
2020-07-15 00:04:45 +08:00
|
|
|
'xcb-shape', 'xcb-xinerama', 'xcb-xfixes', 'xcb-present', 'xcb'
|
2019-10-12 01:11:45 +08:00
|
|
|
]
|
2018-10-04 05:46:18 +08:00
|
|
|
|
2019-10-12 01:11:45 +08:00
|
|
|
required_packages = [
|
|
|
|
'x11', 'x11-xcb', 'xcb-renderutil', 'xcb-image', 'xext', 'pixman-1'
|
2018-11-04 06:15:38 +08:00
|
|
|
]
|
2018-10-15 07:38:21 +08:00
|
|
|
|
2019-10-12 01:11:45 +08:00
|
|
|
foreach i : required_packages
|
2018-10-04 05:46:18 +08:00
|
|
|
base_deps += [dependency(i, required: true)]
|
2018-10-15 07:38:21 +08:00
|
|
|
endforeach
|
|
|
|
|
2019-10-12 01:11:45 +08:00
|
|
|
foreach i : required_xcb_packages
|
|
|
|
base_deps += [dependency(i, version: '>=1.12.0', required: true)]
|
|
|
|
endforeach
|
|
|
|
|
2019-04-03 15:36:02 +08:00
|
|
|
if not cc.has_header('uthash.h')
|
|
|
|
error('Dependency uthash not found')
|
|
|
|
endif
|
|
|
|
|
2018-10-04 05:46:18 +08:00
|
|
|
deps = []
|
|
|
|
|
2018-10-15 07:38:21 +08:00
|
|
|
if get_option('config_file')
|
2020-02-25 19:38:28 +08:00
|
|
|
deps += [dependency('libconfig', version: '>=1.4', required: true)]
|
|
|
|
|
2018-10-15 07:38:21 +08: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-04 05:46:18 +08:00
|
|
|
cflags += ['-DCONFIG_OPENGL', '-DGL_GLEXT_PROTOTYPES']
|
2018-10-15 07:38:21 +08: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-19 06:34:59 +08:00
|
|
|
if get_option('unittest')
|
|
|
|
cflags += ['-DUNIT_TEST']
|
|
|
|
endif
|
|
|
|
|
2019-11-12 04:46:06 +08:00
|
|
|
host_system = host_machine.system()
|
|
|
|
if host_system == 'linux'
|
|
|
|
cflags += ['-DHAS_INOTIFY']
|
2020-07-15 00:04:45 +08:00
|
|
|
elif host_system == 'freebsd' or host_system == 'netbsd' or
|
|
|
|
host_system == 'dragonfly' or host_system == 'openbsd'
|
2019-11-12 04:46:06 +08:00
|
|
|
cflags += ['-DHAS_KQUEUE']
|
|
|
|
endif
|
|
|
|
|
2018-10-04 05:46:18 +08:00
|
|
|
subdir('backend')
|
|
|
|
|
2019-10-24 02:27:30 +08:00
|
|
|
picom = executable('picom', srcs, c_args: cflags,
|
2019-03-19 06:34:59 +08:00
|
|
|
dependencies: [ base_deps, deps, test_h_dep ],
|
2019-10-24 02:27:30 +08:00
|
|
|
install: true, include_directories: picom_inc)
|
2019-03-19 06:34:59 +08:00
|
|
|
|
|
|
|
if get_option('unittest')
|
2019-10-24 02:27:30 +08:00
|
|
|
test('picom unittest', picom, args: [ '--unittest' ])
|
2019-03-19 06:34:59 +08:00
|
|
|
endif
|