Skip to content

Commit

Permalink
Merge pull request #1375 from triallax/meson-fixes
Browse files Browse the repository at this point in the history
meson: actually add `include` subdir, fix errors
  • Loading branch information
yshui authored Oct 29, 2024
2 parents 1648673 + 6e95dc0 commit d07e2e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/meson.build
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) Yuxuan Shui <[email protected]>
subdirs('picom')
subdir('picom')
2 changes: 1 addition & 1 deletion include/picom/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright (c) Yuxuan Shui <[email protected]>

api_headers = [
'api.h'
'api.h',
'backend.h'
]
install_headers(api_headers, subdir: 'picom')
1 change: 1 addition & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit d07e2e0

Please sign in to comment.