Skip to content

Commit

Permalink
Fix build when audacity_has_audiocom_upload is false
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul-Licameli committed Apr 11, 2024
1 parent 944ffc9 commit cd906ec
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions modules/sharing/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@

# The list of modules is ordered so that each module occurs after any others
# that it depends on
set( MODULES
mod-cloud-audiocom
)
set(MODULES)

if ( ${_OPT}has_audiocom_upload)
list( APPEND MODULES
mod-cloud-audiocom
)
endif()

audacity_module_subdirectory("${MODULES}")

0 comments on commit cd906ec

Please sign in to comment.