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 74ae2e1bccfa8aefb5fe40c7b40064251466ec7a
parent 73c1d9c6d508fb786e28245365b403891a7333d9
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Tue, 24 Dec 2024 01:42:54 +0100

remove duplicated linker dependencies

Diffstat:
Msource/mqLib/CMakeLists.txt | 2+-
Msource/nord/n2x/n2xLib/CMakeLists.txt | 2+-
Msource/wLib/CMakeLists.txt | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/source/mqLib/CMakeLists.txt b/source/mqLib/CMakeLists.txt @@ -43,7 +43,7 @@ endif() target_sources(mqLib PRIVATE ${SOURCES}) source_group("source" FILES ${SOURCES}) -target_link_libraries(mqLib PUBLIC synthLib wLib 68kEmu) +target_link_libraries(mqLib PUBLIC wLib) if(DSP56300_DEBUGGER) target_link_libraries(mqLib PUBLIC dsp56kDebugger) diff --git a/source/nord/n2x/n2xLib/CMakeLists.txt b/source/nord/n2x/n2xLib/CMakeLists.txt @@ -23,7 +23,7 @@ set(SOURCES target_sources(n2xLib PRIVATE ${SOURCES}) source_group("source" FILES ${SOURCES}) -target_link_libraries(n2xLib PUBLIC synthLib 68kEmu hardwareLib) +target_link_libraries(n2xLib PUBLIC hardwareLib) if(DSP56300_DEBUGGER) target_link_libraries(n2xLib PUBLIC dsp56kDebugger) diff --git a/source/wLib/CMakeLists.txt b/source/wLib/CMakeLists.txt @@ -17,6 +17,6 @@ set(SOURCES target_sources(wLib PRIVATE ${SOURCES}) source_group("source" FILES ${SOURCES}) -target_link_libraries(wLib PUBLIC synthLib 68kEmu hardwareLib) +target_link_libraries(wLib PUBLIC hardwareLib) target_include_directories(wLib PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/..)