Add boilerplate for event handling

This commit is contained in:
Robbert van der Helm
2020-02-07 17:16:09 +01:00
parent 7a68654fa2
commit 65996f856a
4 changed files with 27 additions and 15 deletions
+4 -2
View File
@@ -2,7 +2,7 @@ project(
'yabridge',
'cpp',
version : '0.1',
default_options : ['warning_level=3', 'cpp_std=c++17']
default_options : ['warning_level=3', 'cpp_std=c++17', 'build.cpp_std=c++17']
)
# Meson does not let us set a default cross compiler, which makes sense, but it
@@ -20,6 +20,8 @@ endif
# about the way these two components work together can be found in the readme
# file.
msgpack_dep = dependency('msgpack')
include_dir = include_directories('src/include')
common_src = []
@@ -38,7 +40,7 @@ shared_library(
linux_plugin_src + common_src,
native : true,
include_directories : include_dir,
dependencies : [],
dependencies : [msgpack_dep],
link_args : []
)