Move XMML and URL escape functions to common/utils

So we don't need to include notifications.h on the Wine side. The
alternative would be to put ifdef guards around everything involving
notification sending in `notifications.cpp` but that would be even more
problematic.
This commit is contained in:
Robbert van der Helm
2022-10-28 17:52:23 +02:00
parent 91832e5c0f
commit b58eca9ed1
6 changed files with 123 additions and 123 deletions
+3
View File
@@ -19,6 +19,7 @@ vst2_chainloader_sources = files(
'../common/linking.cpp',
'../common/notifications.cpp',
'../common/process.cpp',
'../common/utils.cpp',
'utils.cpp',
'vst2-chainloader.cpp',
)
@@ -29,6 +30,7 @@ if with_clap
'../common/linking.cpp',
'../common/notifications.cpp',
'../common/process.cpp',
'../common/utils.cpp',
'utils.cpp',
'clap-chainloader.cpp',
)
@@ -40,6 +42,7 @@ if with_vst3
'../common/linking.cpp',
'../common/notifications.cpp',
'../common/process.cpp',
'../common/utils.cpp',
'utils.cpp',
'vst3-chainloader.cpp',
)