Rename win32-editor.h -> editor.h

Since I no longer intent to do separate X11 handling on the plugin side
This commit is contained in:
Robbert van der Helm
2020-03-17 21:37:53 +01:00
parent 1c17513936
commit e2d8c0883f
4 changed files with 5 additions and 4 deletions
+3 -2
View File
@@ -32,6 +32,7 @@ bitsery_dep = subproject('bitsery').get_variable('bitsery_dep')
threads_dep = dependency('threads') threads_dep = dependency('threads')
# The built in threads dependency does not know how to handle winegcc # The built in threads dependency does not know how to handle winegcc
wine_threads_dep = declare_dependency(link_args : '-lpthread') wine_threads_dep = declare_dependency(link_args : '-lpthread')
x11_dep = dependency('x11')
include_dir = include_directories('src/include') include_dir = include_directories('src/include')
@@ -57,11 +58,11 @@ executable(
'src/common/serialization.cpp', 'src/common/serialization.cpp',
'src/wine-host/plugin-bridge.cpp', 'src/wine-host/plugin-bridge.cpp',
'src/wine-host/vst-host.cpp', 'src/wine-host/vst-host.cpp',
'src/wine-host/win32-editor.cpp', 'src/wine-host/editor.cpp',
], ],
native : false, native : false,
include_directories : include_dir, include_directories : include_dir,
dependencies : [boost_dep, bitsery_dep, wine_threads_dep], dependencies : [boost_dep, bitsery_dep, wine_threads_dep, x11_dep],
cpp_args : compiler_options, cpp_args : compiler_options,
link_args : [] link_args : []
) )
@@ -1,4 +1,4 @@
#include "win32-editor.h" #include "editor.h"
ATOM register_window_class(std::string window_class_name); ATOM register_window_class(std::string window_class_name);
+1 -1
View File
@@ -31,7 +31,7 @@
#include <thread> #include <thread>
#include "../common/logging.h" #include "../common/logging.h"
#include "win32-editor.h" #include "editor.h"
/** /**
* This handles the communication between the Linux native VST plugin and the * This handles the communication between the Linux native VST plugin and the