mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-15 23:59:37 +02:00
Actually do what the previous change said
Forgot to actually exclude mod-null and mod-nyq-bench from the build. Fixed a few typos. And removed "zip" from the package install on Ubuntu since it's not needed anymore.
This commit is contained in:
parent
f3ce60ae7a
commit
d748c0816a
2
.github/workflows/cmake_build.yml
vendored
2
.github/workflows/cmake_build.yml
vendored
@ -249,7 +249,7 @@ jobs:
|
||||
export LD_LIBRARY_PATH="/usr/local/lib"
|
||||
|
||||
# Install required packages
|
||||
sudo apt-get install -y libgtk2.0-dev libasound2-dev gettext zip
|
||||
sudo apt-get install -y libgtk2.0-dev libasound2-dev gettext
|
||||
sudo apt-get remove -y ccache
|
||||
|
||||
# Build wxWidgets if needed
|
||||
|
@ -6,7 +6,7 @@ message( STATUS "========== Configuring ${TARGET} ==========" )
|
||||
|
||||
def_vars()
|
||||
|
||||
add_library( ${TARGET} MODULE )
|
||||
add_library( ${TARGET} MODULE EXCLUDE_FROM_ALL )
|
||||
|
||||
list( APPEND SOURCES
|
||||
PRIVATE
|
||||
@ -25,7 +25,7 @@ list( APPEND DEFINES
|
||||
# the Windows pragmas are removed from ModNullCallback.cpp.
|
||||
# Without it, the wxWidgets "debug.h" will define __WXDEBUG__
|
||||
# which then causes this module to emit library pragmas for the
|
||||
# debug versions of wxWidgets...even if the build if for Release.
|
||||
# debug versions of wxWidgets...even if the build is for Release.
|
||||
wxDEBUG_LEVEL=0
|
||||
)
|
||||
|
||||
|
@ -6,7 +6,7 @@ message( STATUS "========== Configuring ${TARGET} ==========" )
|
||||
|
||||
def_vars()
|
||||
|
||||
add_library( ${TARGET} MODULE )
|
||||
add_library( ${TARGET} MODULE EXCLUDE_FROM_ALL )
|
||||
|
||||
list( APPEND SOURCES
|
||||
PRIVATE
|
||||
@ -25,7 +25,7 @@ list( APPEND DEFINES
|
||||
# the Windows pragmas are removed from NyqBench.cpp. Without
|
||||
# it, the wxWidgets "debug.h" will define __WXDEBUG__ which
|
||||
# then causes this module to emit library pragmas for the debug
|
||||
# versions of wxWidgets...even if the build if for Release.
|
||||
# versions of wxWidgets...even if the build is for Release.
|
||||
wxDEBUG_LEVEL=0
|
||||
)
|
||||
|
||||
|
@ -27,7 +27,7 @@ list( APPEND DEFINES
|
||||
# the Windows pragmas are removed from ScripterCallback.cpp.
|
||||
# Without it, the wxWidgets "debug.h" will define __WXDEBUG__
|
||||
# which then causes this module to emit library pragmas for the
|
||||
# debug versions of wxWidgets...even if the build if for Release.
|
||||
# debug versions of wxWidgets...even if the build is for Release.
|
||||
wxDEBUG_LEVEL=0
|
||||
)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user