Skip to content

Commit

Permalink
Old modules depend privately on Audacity
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul-Licameli committed Apr 10, 2024
1 parent f2ee769 commit 7805599
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion modules/etc/mod-null/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
6 changes: 5 additions & 1 deletion modules/nyquist/mod-nyq-bench/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
6 changes: 5 additions & 1 deletion modules/scripting/mod-script-pipe/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}" "" )

0 comments on commit 7805599

Please sign in to comment.