diff --git a/modules/etc/mod-null/CMakeLists.txt b/modules/etc/mod-null/CMakeLists.txt index 4798e6ac1c53..d00e23288ac9 100644 --- a/modules/etc/mod-null/CMakeLists.txt +++ b/modules/etc/mod-null/CMakeLists.txt @@ -12,7 +12,11 @@ set( SOURCES ModNullCallback.cpp ModNullCallback.h ) -audacity_module( ${TARGET} "${SOURCES}" "Audacity" +set ( LIBRARIES + PRIVATE + Audacity +) +audacity_module( ${TARGET} "${SOURCES}" "${LIBRARIES}" "${DEFINES}" "" ) set_target_properties( ${TARGET} PROPERTIES EXCLUDE_FROM_ALL YES ) diff --git a/modules/nyquist/mod-nyq-bench/CMakeLists.txt b/modules/nyquist/mod-nyq-bench/CMakeLists.txt index dc02c6cf3285..7e328c62f147 100644 --- a/modules/nyquist/mod-nyq-bench/CMakeLists.txt +++ b/modules/nyquist/mod-nyq-bench/CMakeLists.txt @@ -12,7 +12,11 @@ set( DEFINES # versions of wxWidgets...even if the build is for Release. wxDEBUG_LEVEL=0 ) -audacity_module( ${TARGET} "${SOURCES}" "Audacity" +set( LIBRARIES + PRIVATE + Audacity +) +audacity_module( ${TARGET} "${SOURCES}" "${LIBRARIES}" "${DEFINES}" "" ) set_target_properties( ${TARGET} PROPERTIES EXCLUDE_FROM_ALL YES ) diff --git a/modules/scripting/mod-script-pipe/CMakeLists.txt b/modules/scripting/mod-script-pipe/CMakeLists.txt index 5ee18627febd..9bb867f02633 100644 --- a/modules/scripting/mod-script-pipe/CMakeLists.txt +++ b/modules/scripting/mod-script-pipe/CMakeLists.txt @@ -13,5 +13,9 @@ set( DEFINES # debug versions of wxWidgets...even if the build is for Release. wxDEBUG_LEVEL=0 ) -audacity_module( mod-script-pipe "${SOURCES}" "Audacity" +set( LIBRARIES + PRIVATE + Audacity +) +audacity_module( mod-script-pipe "${SOURCES}" "${LIBRARIES}" "${DEFINES}" "" )