mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 04:45:58 +01:00
build: drop proto_inc
protocol/meson.build adds protocol header files to wlr_files. No need to add them via include dirs.
This commit is contained in:
parent
840fd7dce6
commit
7e7633abf0
1 changed files with 1 additions and 2 deletions
|
@ -169,7 +169,6 @@ subdir('xwayland')
|
||||||
subdir('include')
|
subdir('include')
|
||||||
|
|
||||||
wlr_inc = include_directories('include')
|
wlr_inc = include_directories('include')
|
||||||
proto_inc = include_directories('protocol')
|
|
||||||
|
|
||||||
symbols_file = 'wlroots.syms'
|
symbols_file = 'wlroots.syms'
|
||||||
symbols_flag = '-Wl,--version-script,@0@/@1@'.format(meson.current_source_dir(), symbols_file)
|
symbols_flag = '-Wl,--version-script,@0@/@1@'.format(meson.current_source_dir(), symbols_file)
|
||||||
|
@ -177,7 +176,7 @@ lib_wlr = library(
|
||||||
meson.project_name(), wlr_files,
|
meson.project_name(), wlr_files,
|
||||||
soversion: soversion.to_string(),
|
soversion: soversion.to_string(),
|
||||||
dependencies: wlr_deps,
|
dependencies: wlr_deps,
|
||||||
include_directories: [wlr_inc, proto_inc],
|
include_directories: [wlr_inc],
|
||||||
install: true,
|
install: true,
|
||||||
link_args: symbols_flag,
|
link_args: symbols_flag,
|
||||||
link_depends: symbols_file,
|
link_depends: symbols_file,
|
||||||
|
|
Loading…
Reference in a new issue