Add basic communication with a child process

This commit is contained in:
Robbert van der Helm
2020-02-08 17:18:39 +01:00
parent 65996f856a
commit b757001435
5 changed files with 122 additions and 4 deletions
+3 -2
View File
@@ -20,6 +20,7 @@ endif
# about the way these two components work together can be found in the readme
# file.
boost_dep = dependency('boost', modules : ['filesystem'])
msgpack_dep = dependency('msgpack')
include_dir = include_directories('src/include')
@@ -40,8 +41,8 @@ shared_library(
linux_plugin_src + common_src,
native : true,
include_directories : include_dir,
dependencies : [msgpack_dep],
link_args : []
dependencies : [boost_dep, msgpack_dep],
link_args : ['-ldl']
)
executable(