You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RemotePlugin.h is a dependency of RemoteVstPlugin.cpp. If the header is updated, the executable is not rebuilt. Adding the header to SOURCE in CMakeLists.txt does not work. This could be solved by using ADD_EXECUTABLE() instead of ADD_CUSTOM_COMMAND() to build RemoteVstPlugin and set wineg++ as the compiler, but CMake does not allow multiple compilers in the same directory. The solution would be to move this part of the build to a subdirectory.
The text was updated successfully, but these errors were encountered:
RemotePlugin.h
is a dependency ofRemoteVstPlugin.cpp
. If the header is updated, the executable is not rebuilt. Adding the header toSOURCE
inCMakeLists.txt
does not work. This could be solved by usingADD_EXECUTABLE()
instead ofADD_CUSTOM_COMMAND()
to buildRemoteVstPlugin
and setwineg++
as the compiler, but CMake does not allow multiple compilers in the same directory. The solution would be to move this part of the build to a subdirectory.The text was updated successfully, but these errors were encountered: