Skip to content

Commit 6e95dc0

Browse files
committed
meson: actually add include subdir, fix errors
seems to have been missed previously
1 parent 1648673 commit 6e95dc0

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

include/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# SPDX-License-Identifier: MPL-2.0
22
# Copyright (c) Yuxuan Shui <[email protected]>
3-
subdirs('picom')
3+
subdir('picom')

include/picom/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) Yuxuan Shui <[email protected]>
33

44
api_headers = [
5-
'api.h'
5+
'api.h',
66
'backend.h'
77
]
88
install_headers(api_headers, subdir: 'picom')

meson.build

+1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ test_h_dep = subproject('test.h').get_variable('test_h_dep')
107107
subdir('src')
108108
subdir('man')
109109
subdir('tools')
110+
subdir('include')
110111

111112
install_data('bin/picom-trans', install_dir: get_option('bindir'))
112113
install_data('picom.desktop', install_dir: 'share/applications')

0 commit comments

Comments
 (0)