mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-02 08:39:46 +02:00
- Upped version number to Audacity 2.3.0 in configure.ac - configure.ac now wants 3.1.1 but still accepts 3.0.0 (for top level, lib-widgets-extra and mod-nyq-bench) - .travis.yml now apt-gets autopoint. This allows us to do an autoreconf -ivf on Travis, IF we want to, but i snot used yet. - FileDialog MakeFile.am now has LDFLAGS to resolve libtools issue on Travis with missing --tags=CXX
30 lines
709 B
Makefile
30 lines
709 B
Makefile
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
lib_LTLIBRARIES = libFileDialog.la
|
|
|
|
libFileDialog_la_LIBTOOLFLAGS = --tag=CXX
|
|
libFileDialog_la_CPPFLAGS = $(WX_CXXFLAGS) -Wno-deprecated-declarations
|
|
libFileDialog_la_LIBADD = $(WX_LIBS)
|
|
libFileDialog_la_SOURCES = FileDialog.cpp FileDialog.h
|
|
|
|
if GTK
|
|
libFileDialog_la_CPPFLAGS += $(GTK_CFLAGS)
|
|
libFileDialog_la_LIBADD += $(GTK_LIBS)
|
|
libFileDialog_la_SOURCES += \
|
|
gtk/FileDialogPrivate.cpp \
|
|
gtk/FileDialogPrivate.h \
|
|
$(NULL)
|
|
endif
|
|
|
|
if MAC
|
|
libFileDialog_la_SOURCES += mac/FileDialogPrivate.mm \
|
|
mac/FileDialogPrivate.h \
|
|
$(NULL)
|
|
endif
|
|
|
|
if WINDOWS
|
|
libFileDialog_la_SOURCES += win/FileDialogPrivate.cpp \
|
|
win/FileDialogPrivate.h \
|
|
$(NULL)
|
|
endif
|