1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2025-02-17 15:56:21 -05:00

Merge pull request #1375 from triallax/meson-fixes

meson: actually add `include` subdir, fix errors
This commit is contained in:
Yuxuan Shui 2024-10-29 19:22:45 +00:00 committed by GitHub
commit d07e2e0414
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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')