1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2024-11-18 13:55:36 -05:00

meson: actually add include subdir, fix errors

seems to have been missed previously
This commit is contained in:
triallax 2024-10-28 13:03:49 +00:00
parent 16486739fa
commit 6e95dc09f6
No known key found for this signature in database
3 changed files with 3 additions and 2 deletions

View file

@ -1,3 +1,3 @@
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) Yuxuan Shui <yshuiv7@gmail.com>
subdirs('picom')
subdir('picom')

View file

@ -2,7 +2,7 @@
# Copyright (c) Yuxuan Shui <yshuiv7@gmail.com>
api_headers = [
'api.h'
'api.h',
'backend.h'
]
install_headers(api_headers, subdir: 'picom')

View file

@ -107,6 +107,7 @@ test_h_dep = subproject('test.h').get_variable('test_h_dep')
subdir('src')
subdir('man')
subdir('tools')
subdir('include')
install_data('bin/picom-trans', install_dir: get_option('bindir'))
install_data('picom.desktop', install_dir: 'share/applications')