gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit db21a3e1608ecd7d886acbbd3e3a000196e65c01
parent 6e73c47c817ee4535d45419fe7f3147745329140
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun, 15 Dec 2024 12:09:28 +0100

remove synthLib dependency from ui lib, no longer needed

Diffstat:
Msource/juceUiLib/CMakeLists.txt | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/juceUiLib/CMakeLists.txt b/source/juceUiLib/CMakeLists.txt @@ -29,7 +29,7 @@ add_library(juceUiLib STATIC) target_sources(juceUiLib PRIVATE ${SOURCES}) source_group("source" FILES ${SOURCES}) -target_link_libraries(juceUiLib PUBLIC synthLib) +target_link_libraries(juceUiLib PUBLIC baseLib) target_include_directories(juceUiLib PUBLIC ../JUCE/modules) target_compile_definitions(juceUiLib PRIVATE JUCE_GLOBAL_MODULE_SETTINGS_INCLUDED=1)