Connect to the unix socket from the Wine VST host

This commit is contained in:
Robbert van der Helm
2020-02-24 15:46:22 +01:00
parent a716072272
commit df47104297
5 changed files with 27 additions and 7 deletions
+3 -1
View File
@@ -23,6 +23,8 @@ endif
boost_dep = dependency('boost', modules : ['filesystem'])
msgpack_dep = dependency('msgpack')
threads_dep = dependency('threads')
# The built in threads dependency does not know how to handle winegcc
wine_threads_dep = declare_dependency(link_args : '-lpthread')
include_dir = include_directories('src/include')
@@ -45,6 +47,6 @@ executable(
],
native : false,
include_directories : include_dir,
dependencies : [msgpack_dep],
dependencies : [boost_dep, msgpack_dep, wine_threads_dep],
link_args : []
)