Add a function for sending XEMBED messages

This commit is contained in:
Robbert van der Helm
2020-03-21 16:32:39 +01:00
parent 50f26d1238
commit 2e44de6f49
3 changed files with 34 additions and 1 deletions
+2 -1
View File
@@ -33,6 +33,7 @@ threads_dep = dependency('threads')
# The built in threads dependency does not know how to handle winegcc
wine_threads_dep = declare_dependency(link_args : '-lpthread')
xcb_dep = dependency('xcb')
xcb_ewmh_dep = dependency('xcb-ewmh')
include_dir = include_directories('src/include')
@@ -62,7 +63,7 @@ executable(
],
native : false,
include_directories : include_dir,
dependencies : [boost_dep, bitsery_dep, wine_threads_dep, xcb_dep],
dependencies : [boost_dep, bitsery_dep, wine_threads_dep, xcb_dep, xcb_ewmh_dep],
cpp_args : compiler_options,
link_args : []
)