mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-14 09:03:54 +01:00
Removed old build system
This was fun!!! Holler if I had too much fun. :-)
This commit is contained in:
@@ -143,110 +143,6 @@ It handles initialization and termination by subclassing wxApp.
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// Windows specific linker control...only needed once so
|
||||
// this is a good place (unless we want to add another file).
|
||||
#if defined(__WXMSW__)
|
||||
//#if wxCHECK_VERSION(3, 0, 2) && !wxCHECK_VERSION(3, 1, 0)
|
||||
#include <wx/init.h>
|
||||
//#endif
|
||||
// These lines ensure that Audacity gets WindowsXP themes.
|
||||
// Without them we get the old-style Windows98/2000 look under XP.
|
||||
# if !defined(__WXWINCE__)
|
||||
# pragma comment(linker,"\"/manifestdependency:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
|
||||
# endif
|
||||
|
||||
// These lines allows conditional inclusion of the various libraries
|
||||
// that Audacity can use.
|
||||
|
||||
# if defined(USE_LIBFLAC)
|
||||
# pragma comment(lib, "libflac++")
|
||||
# pragma comment(lib, "libflac")
|
||||
# endif
|
||||
|
||||
# if defined(USE_LIBID3TAG)
|
||||
# pragma comment(lib, "libid3tag")
|
||||
# endif
|
||||
|
||||
# if defined(USE_LIBMAD)
|
||||
# pragma comment(lib, "libmad")
|
||||
# endif
|
||||
|
||||
# if defined(USE_LIBTWOLAME)
|
||||
# pragma comment(lib, "twolame")
|
||||
# endif
|
||||
|
||||
# if defined(USE_LIBVORBIS)
|
||||
# pragma comment(lib, "libogg")
|
||||
# pragma comment(lib, "libvorbis")
|
||||
# endif
|
||||
|
||||
# if defined(USE_LV2)
|
||||
# pragma comment(lib, "lv2")
|
||||
# endif
|
||||
|
||||
# if defined(USE_MIDI)
|
||||
# pragma comment(lib, "portsmf")
|
||||
# endif
|
||||
|
||||
# if defined(EXPERIMENTAL_MIDI_OUT)
|
||||
# pragma comment(lib, "portmidi")
|
||||
# endif
|
||||
|
||||
# if defined(EXPERIMENTAL_SCOREALIGN)
|
||||
# pragma comment(lib, "libscorealign")
|
||||
# endif
|
||||
|
||||
# if defined(USE_NYQUIST)
|
||||
# pragma comment(lib, "libnyquist")
|
||||
# endif
|
||||
|
||||
# if defined(USE_PORTMIXER)
|
||||
# pragma comment(lib, "portmixer")
|
||||
# endif
|
||||
|
||||
# if defined(USE_SBSMS)
|
||||
# pragma comment(lib, "sbsms")
|
||||
# endif
|
||||
|
||||
# if defined(USE_SOUNDTOUCH)
|
||||
# pragma comment(lib, "soundtouch")
|
||||
# endif
|
||||
|
||||
# if defined(USE_VAMP)
|
||||
# pragma comment(lib, "libvamp")
|
||||
# endif
|
||||
|
||||
# if defined(_DEBUG)
|
||||
# define D "d"
|
||||
# else
|
||||
# define D ""
|
||||
# endif
|
||||
# if wxCHECK_VERSION(3, 1, 0)
|
||||
# define V "31"
|
||||
# elif wxCHECK_VERSION(3, 0, 0)
|
||||
# define V "30"
|
||||
# else
|
||||
# define V "28"
|
||||
# endif
|
||||
|
||||
# if defined(EXPERIMENTAL_CRASH_REPORT)
|
||||
# pragma comment(lib, "wxmsw" V "u" D "_qa")
|
||||
# endif
|
||||
# pragma comment(lib, "wxbase" V "u" D)
|
||||
# pragma comment(lib, "wxbase" V "u" D "_net")
|
||||
# pragma comment(lib, "wxmsw" V "u" D "_adv")
|
||||
# pragma comment(lib, "wxmsw" V "u" D "_core")
|
||||
# pragma comment(lib, "wxmsw" V "u" D "_html")
|
||||
# pragma comment(lib, "wxpng" D)
|
||||
# pragma comment(lib, "wxzlib" D)
|
||||
# pragma comment(lib, "wxjpeg" D)
|
||||
# pragma comment(lib, "wxtiff" D)
|
||||
|
||||
# undef V
|
||||
# undef D
|
||||
|
||||
#endif //(__WXMSW__)
|
||||
|
||||
// DA: Logo for Splash Screen
|
||||
#ifdef EXPERIMENTAL_DA
|
||||
#include "../images/DarkAudacityLogoWithName.xpm"
|
||||
|
||||
@@ -172,8 +172,6 @@ list( APPEND SOURCES
|
||||
LyricsWindow.cpp
|
||||
LyricsWindow.h
|
||||
MacroMagic.h
|
||||
Makefile.am
|
||||
Makefile.in
|
||||
Matrix.cpp
|
||||
Matrix.h
|
||||
MemoryX.h
|
||||
@@ -238,7 +236,6 @@ list( APPEND SOURCES
|
||||
Registrar.h
|
||||
Resample.cpp
|
||||
Resample.h
|
||||
RevisionIdent.h
|
||||
RingBuffer.cpp
|
||||
RingBuffer.h
|
||||
SampleFormat.cpp
|
||||
|
||||
969
src/Makefile.am
969
src/Makefile.am
@@ -1,969 +0,0 @@
|
||||
bin_PROGRAMS = audacity
|
||||
|
||||
desktopdir = $(datadir)/applications
|
||||
desktop_DATA = audacity.desktop
|
||||
|
||||
mimedir = $(datarootdir)/mime/packages
|
||||
dist_mime_DATA = audacity.xml
|
||||
|
||||
check_LTLIBRARIES = libaudacity.la
|
||||
|
||||
libaudacity_la_CPPFLAGS = $(WX_CXXFLAGS)
|
||||
libaudacity_la_LIBADD = $(WX_LIBS)
|
||||
|
||||
libaudacity_la_SOURCES = \
|
||||
BlockFile.cpp \
|
||||
BlockFile.h \
|
||||
DirManager.cpp \
|
||||
DirManager.h \
|
||||
Dither.cpp \
|
||||
Dither.h \
|
||||
FileFormats.cpp \
|
||||
FileFormats.h \
|
||||
Internat.cpp \
|
||||
Internat.h \
|
||||
Prefs.cpp \
|
||||
Prefs.h \
|
||||
SampleFormat.cpp \
|
||||
SampleFormat.h \
|
||||
Sequence.cpp \
|
||||
Sequence.h \
|
||||
blockfile/LegacyAliasBlockFile.cpp \
|
||||
blockfile/LegacyAliasBlockFile.h \
|
||||
blockfile/LegacyBlockFile.cpp \
|
||||
blockfile/LegacyBlockFile.h \
|
||||
blockfile/NotYetAvailableException.cpp \
|
||||
blockfile/NotYetAvailableException.h \
|
||||
blockfile/ODDecodeBlockFile.cpp \
|
||||
blockfile/ODDecodeBlockFile.h \
|
||||
blockfile/ODPCMAliasBlockFile.cpp \
|
||||
blockfile/ODPCMAliasBlockFile.h \
|
||||
blockfile/PCMAliasBlockFile.cpp \
|
||||
blockfile/PCMAliasBlockFile.h \
|
||||
blockfile/SilentBlockFile.cpp \
|
||||
blockfile/SilentBlockFile.h \
|
||||
blockfile/SimpleBlockFile.cpp \
|
||||
blockfile/SimpleBlockFile.h \
|
||||
xml/XMLTagHandler.cpp \
|
||||
xml/XMLTagHandler.h \
|
||||
$(NULL)
|
||||
|
||||
audacity_CPPFLAGS = \
|
||||
-std=c++14 \
|
||||
-Wno-deprecated-declarations \
|
||||
-D__STDC_CONSTANT_MACROS \
|
||||
-DWXINTL_NO_GETTEXT_MACRO \
|
||||
-DPKGLIBDIR=\"$(pkglibdir)\" \
|
||||
-DLIBDIR=\"$(libdir)\" \
|
||||
$(EXPAT_CFLAGS) \
|
||||
$(FILEDIALOG_CFLAGS) \
|
||||
$(PORTAUDIO_CFLAGS) \
|
||||
$(PORTMIXER_CFLAGS) \
|
||||
$(SNDFILE_CFLAGS) \
|
||||
$(SOXR_CFLAGS) \
|
||||
$(WX_CXXFLAGS) \
|
||||
$(NULL)
|
||||
|
||||
# Until we upgrade to a newer version of wxWidgets...will get rid of hundreds of these:
|
||||
#
|
||||
# /usr/local/include/wx-2.8/wx/buffer.h: In member function 'void wxMemoryBuffer::AppendByte(char)':
|
||||
# /usr/local/include/wx-2.8/wx/debug.h:194:43: warning: typedef 'wxDummyCheckInt' locally defined but not used [-Wunused-local-typedefs]
|
||||
# #define wxFORCE_SEMICOLON typedef int wxDummyCheckInt
|
||||
# ^
|
||||
# /usr/local/include/wx-2.8/wx/debug.h:224:9: note: in expansion of macro 'wxFORCE_SEMICOLON'
|
||||
# wxFORCE_SEMICOLON /* just to force a semicolon */
|
||||
# ^
|
||||
# /usr/local/include/wx-2.8/wx/debug.h:233:38: note: in expansion of macro 'wxCHECK2_MSG'
|
||||
# #define wxCHECK_RET(cond, msg) wxCHECK2_MSG(cond, return, msg)
|
||||
# ^
|
||||
# /usr/local/include/wx-2.8/wx/buffer.h:289:9: note: in expansion of macro 'wxCHECK_RET'
|
||||
# wxCHECK_RET( m_bufdata->m_data, wxT("invalid wxMemoryBuffer") );
|
||||
# ^
|
||||
audacity_CXXFLAGS = \
|
||||
-Wno-unused-local-typedefs
|
||||
|
||||
audacity_LDFLAGS = -rdynamic
|
||||
audacity_LDADD = \
|
||||
$(EXPAT_LIBS) \
|
||||
$(FILEDIALOG_LIBS) \
|
||||
$(PORTAUDIO_LIBS) \
|
||||
$(PORTMIXER_LIBS) \
|
||||
$(SNDFILE_LIBS) \
|
||||
$(SOXR_LIBS) \
|
||||
$(WX_LIBS) \
|
||||
$(NULL)
|
||||
|
||||
audacity_SOURCES = \
|
||||
$(libaudacity_la_SOURCES) \
|
||||
AboutDialog.cpp \
|
||||
AboutDialog.h \
|
||||
AColor.cpp \
|
||||
AColor.h \
|
||||
AdornedRulerPanel.cpp \
|
||||
AdornedRulerPanel.h \
|
||||
AllThemeResources.h \
|
||||
AttachedVirtualFunction.h \
|
||||
Audacity.h \
|
||||
AudacityApp.cpp \
|
||||
AudacityApp.h \
|
||||
AudacityException.cpp \
|
||||
AudacityException.h \
|
||||
AudacityLogger.cpp \
|
||||
AudacityLogger.h \
|
||||
AudioIO.cpp \
|
||||
AudioIO.h \
|
||||
AudioIOBase.cpp \
|
||||
AudioIOBase.h \
|
||||
AudioIOListener.h \
|
||||
AutoRecovery.cpp \
|
||||
AutoRecovery.h \
|
||||
AutoRecoveryDialog.cpp \
|
||||
AutoRecoveryDialog.h \
|
||||
BatchCommandDialog.cpp \
|
||||
BatchCommandDialog.h \
|
||||
BatchCommands.cpp \
|
||||
BatchCommands.h \
|
||||
BatchProcessDialog.cpp \
|
||||
BatchProcessDialog.h \
|
||||
Benchmark.cpp \
|
||||
Benchmark.h \
|
||||
CellularPanel.cpp \
|
||||
CellularPanel.h \
|
||||
ClientData.h \
|
||||
ClientDataHelpers.h \
|
||||
Clipboard.cpp \
|
||||
Clipboard.h \
|
||||
CommonCommandFlags.cpp \
|
||||
CommonCommandFlags.h \
|
||||
CrashReport.cpp \
|
||||
CrashReport.h \
|
||||
Dependencies.cpp \
|
||||
Dependencies.h \
|
||||
DeviceChange.cpp \
|
||||
DeviceChange.h \
|
||||
DeviceManager.cpp \
|
||||
DeviceManager.h \
|
||||
Diags.cpp \
|
||||
Diags.h \
|
||||
Envelope.cpp \
|
||||
Envelope.h \
|
||||
EnvelopeEditor.cpp \
|
||||
EnvelopeEditor.h \
|
||||
Experimental.h \
|
||||
FFmpeg.cpp \
|
||||
FFmpeg.h \
|
||||
FFT.cpp \
|
||||
FFT.h \
|
||||
FileException.cpp \
|
||||
FileException.h \
|
||||
FileIO.cpp \
|
||||
FileIO.h \
|
||||
FileNames.cpp \
|
||||
FileNames.h \
|
||||
float_cast.h \
|
||||
FreqWindow.cpp \
|
||||
FreqWindow.h \
|
||||
HelpText.cpp \
|
||||
HelpText.h \
|
||||
HistoryWindow.cpp \
|
||||
HistoryWindow.h \
|
||||
HitTestResult.h \
|
||||
ImageManipulation.cpp \
|
||||
ImageManipulation.h \
|
||||
InconsistencyException.cpp \
|
||||
InconsistencyException.h \
|
||||
InterpolateAudio.cpp \
|
||||
InterpolateAudio.h \
|
||||
KeyboardCapture.cpp \
|
||||
KeyboardCapture.h \
|
||||
LabelDialog.cpp \
|
||||
LabelDialog.h \
|
||||
LabelTrack.cpp \
|
||||
LabelTrack.h \
|
||||
LangChoice.cpp \
|
||||
LangChoice.h \
|
||||
Languages.cpp \
|
||||
Languages.h \
|
||||
Legacy.cpp \
|
||||
Legacy.h \
|
||||
Lyrics.cpp \
|
||||
Lyrics.h \
|
||||
LyricsWindow.cpp \
|
||||
LyricsWindow.h \
|
||||
MacroMagic.h \
|
||||
Matrix.cpp \
|
||||
Matrix.h \
|
||||
MemoryX.h \
|
||||
Menus.cpp \
|
||||
Menus.h \
|
||||
MissingAliasFileDialog.cpp \
|
||||
MissingAliasFileDialog.h \
|
||||
Mix.cpp \
|
||||
Mix.h \
|
||||
MixerBoard.cpp \
|
||||
MixerBoard.h \
|
||||
ModuleManager.cpp \
|
||||
ModuleManager.h \
|
||||
NumberScale.h \
|
||||
PitchName.cpp \
|
||||
PitchName.h \
|
||||
PlatformCompatibility.cpp \
|
||||
PlatformCompatibility.h \
|
||||
PluginManager.cpp \
|
||||
PluginManager.h \
|
||||
Printing.cpp \
|
||||
Printing.h \
|
||||
Profiler.cpp \
|
||||
Profiler.h \
|
||||
Project.cpp \
|
||||
Project.h \
|
||||
ProjectAudioIO.cpp \
|
||||
ProjectAudioIO.h \
|
||||
ProjectAudioManager.cpp \
|
||||
ProjectAudioManager.h \
|
||||
ProjectFileIO.cpp \
|
||||
ProjectFileIO.h \
|
||||
ProjectFileIORegistry.cpp \
|
||||
ProjectFileIORegistry.h \
|
||||
ProjectFileManager.cpp \
|
||||
ProjectFileManager.h \
|
||||
ProjectFSCK.cpp \
|
||||
ProjectFSCK.h \
|
||||
ProjectHistory.cpp \
|
||||
ProjectHistory.h \
|
||||
ProjectManager.cpp \
|
||||
ProjectManager.h \
|
||||
ProjectSelectionManager.cpp \
|
||||
ProjectSelectionManager.h \
|
||||
ProjectSettings.cpp \
|
||||
ProjectSettings.h \
|
||||
ProjectStatus.cpp \
|
||||
ProjectStatus.h \
|
||||
ProjectWindow.cpp \
|
||||
ProjectWindow.h \
|
||||
ProjectWindowBase.cpp \
|
||||
ProjectWindowBase.h \
|
||||
RealFFTf.cpp \
|
||||
RealFFTf.h \
|
||||
RealFFTf48x.cpp \
|
||||
RealFFTf48x.h \
|
||||
RefreshCode.h \
|
||||
Resample.cpp \
|
||||
Resample.h \
|
||||
RevisionIdent.h \
|
||||
RingBuffer.cpp \
|
||||
RingBuffer.h \
|
||||
Screenshot.cpp \
|
||||
Screenshot.h \
|
||||
SelectUtilities.cpp \
|
||||
SelectUtilities.h \
|
||||
SelectedRegion.cpp \
|
||||
SelectedRegion.h \
|
||||
SelectionState.cpp \
|
||||
SelectionState.h \
|
||||
Shuttle.cpp \
|
||||
Shuttle.h \
|
||||
ShuttleGetDefinition.cpp \
|
||||
ShuttleGetDefinition.h \
|
||||
ShuttleGui.cpp \
|
||||
ShuttleGui.h \
|
||||
ShuttlePrefs.cpp \
|
||||
ShuttlePrefs.h \
|
||||
Snap.cpp \
|
||||
Snap.h \
|
||||
SoundActivatedRecord.cpp \
|
||||
SoundActivatedRecord.h \
|
||||
Spectrum.cpp \
|
||||
Spectrum.h \
|
||||
SpectrumAnalyst.cpp \
|
||||
SpectrumAnalyst.h \
|
||||
SplashDialog.cpp \
|
||||
SplashDialog.h \
|
||||
SseMathFuncs.cpp \
|
||||
SseMathFuncs.h \
|
||||
Tags.cpp \
|
||||
Tags.h \
|
||||
Theme.cpp \
|
||||
Theme.h \
|
||||
ThemeAsCeeCode.h \
|
||||
TimeDialog.cpp \
|
||||
TimeDialog.h \
|
||||
TimerRecordDialog.cpp \
|
||||
TimerRecordDialog.h \
|
||||
TimeTrack.cpp \
|
||||
TimeTrack.h \
|
||||
Track.cpp \
|
||||
Track.h \
|
||||
TrackArtist.cpp \
|
||||
TrackArtist.h \
|
||||
TrackInfo.cpp \
|
||||
TrackInfo.h \
|
||||
TrackPanel.cpp \
|
||||
TrackPanel.h \
|
||||
TrackPanelAx.cpp \
|
||||
TrackPanelAx.h \
|
||||
TrackPanelCell.h \
|
||||
TrackPanelDrawable.h \
|
||||
TrackPanelDrawingContext.h \
|
||||
TrackPanelListener.h \
|
||||
TrackPanelMouseEvent.h \
|
||||
TrackPanelResizeHandle.cpp \
|
||||
TrackPanelResizeHandle.h \
|
||||
TrackPanelResizerCell.cpp \
|
||||
TrackPanelResizerCell.h \
|
||||
TrackUtilities.cpp \
|
||||
TrackUtilities.h \
|
||||
UIHandle.h \
|
||||
UIHandle.cpp \
|
||||
UndoManager.cpp \
|
||||
UndoManager.h \
|
||||
UserException.cpp \
|
||||
UserException.h \
|
||||
ViewInfo.cpp \
|
||||
ViewInfo.h \
|
||||
VoiceKey.cpp \
|
||||
VoiceKey.h \
|
||||
WaveClip.cpp \
|
||||
WaveClip.h \
|
||||
WaveTrack.cpp \
|
||||
WaveTrack.h \
|
||||
WaveTrackLocation.h \
|
||||
WrappedType.cpp \
|
||||
WrappedType.h \
|
||||
ZoomInfo.cpp \
|
||||
ZoomInfo.h \
|
||||
wxFileNameWrapper.h \
|
||||
commands/AppCommandEvent.cpp \
|
||||
commands/AppCommandEvent.h \
|
||||
commands/AudacityCommand.cpp \
|
||||
commands/AudacityCommand.h \
|
||||
commands/BatchEvalCommand.cpp \
|
||||
commands/BatchEvalCommand.h \
|
||||
commands/Command.cpp \
|
||||
commands/Command.h \
|
||||
commands/CommandBuilder.cpp \
|
||||
commands/CommandBuilder.h \
|
||||
commands/CommandContext.cpp \
|
||||
commands/CommandContext.h \
|
||||
commands/CommandDirectory.cpp \
|
||||
commands/CommandDirectory.h \
|
||||
commands/CommandFlag.h \
|
||||
commands/CommandFunctors.h \
|
||||
commands/CommandHandler.cpp \
|
||||
commands/CommandHandler.h \
|
||||
commands/CommandManager.cpp \
|
||||
commands/CommandManager.h \
|
||||
commands/CommandManagerWindowClasses.h \
|
||||
commands/CommandMisc.h \
|
||||
commands/CommandSignature.cpp \
|
||||
commands/CommandSignature.h \
|
||||
commands/CommandTargets.h \
|
||||
commands/CommandType.cpp \
|
||||
commands/CommandType.h \
|
||||
commands/CompareAudioCommand.cpp \
|
||||
commands/CompareAudioCommand.h \
|
||||
commands/CommandTargets.cpp \
|
||||
commands/CommandTargets.h \
|
||||
commands/Demo.cpp \
|
||||
commands/Demo.h \
|
||||
commands/DragCommand.cpp \
|
||||
commands/DragCommand.h \
|
||||
commands/GetInfoCommand.cpp \
|
||||
commands/GetInfoCommand.h \
|
||||
commands/GetTrackInfoCommand.cpp \
|
||||
commands/GetTrackInfoCommand.h \
|
||||
commands/HelpCommand.cpp \
|
||||
commands/HelpCommand.h \
|
||||
commands/ImportExportCommands.cpp \
|
||||
commands/ImportExportCommands.h \
|
||||
commands/Keyboard.cpp \
|
||||
commands/Keyboard.h \
|
||||
commands/LoadCommands.cpp \
|
||||
commands/LoadCommands.h \
|
||||
commands/MessageCommand.cpp \
|
||||
commands/MessageCommand.h \
|
||||
commands/OpenSaveCommands.cpp \
|
||||
commands/OpenSaveCommands.h \
|
||||
commands/PreferenceCommands.cpp \
|
||||
commands/PreferenceCommands.h \
|
||||
commands/ResponseQueue.cpp \
|
||||
commands/ResponseQueue.h \
|
||||
commands/ScreenshotCommand.cpp \
|
||||
commands/ScreenshotCommand.h \
|
||||
commands/ScriptCommandRelay.cpp \
|
||||
commands/ScriptCommandRelay.h \
|
||||
commands/SelectCommand.cpp \
|
||||
commands/SelectCommand.h \
|
||||
commands/SetClipCommand.cpp \
|
||||
commands/SetClipCommand.h \
|
||||
commands/SetEnvelopeCommand.cpp \
|
||||
commands/SetEnvelopeCommand.h \
|
||||
commands/SetLabelCommand.cpp \
|
||||
commands/SetLabelCommand.h \
|
||||
commands/SetProjectCommand.cpp \
|
||||
commands/SetProjectCommand.h \
|
||||
commands/SetTrackInfoCommand.cpp \
|
||||
commands/SetTrackInfoCommand.h \
|
||||
commands/Validators.h \
|
||||
effects/Amplify.cpp \
|
||||
effects/Amplify.h \
|
||||
effects/AutoDuck.cpp \
|
||||
effects/AutoDuck.h \
|
||||
effects/BassTreble.cpp \
|
||||
effects/BassTreble.h \
|
||||
effects/Biquad.cpp \
|
||||
effects/Biquad.h \
|
||||
effects/ChangePitch.cpp \
|
||||
effects/ChangePitch.h \
|
||||
effects/ChangeSpeed.cpp \
|
||||
effects/ChangeSpeed.h \
|
||||
effects/ChangeTempo.cpp \
|
||||
effects/ChangeTempo.h \
|
||||
effects/ClickRemoval.cpp \
|
||||
effects/ClickRemoval.h \
|
||||
effects/Compressor.cpp \
|
||||
effects/Compressor.h \
|
||||
effects/Contrast.cpp \
|
||||
effects/Contrast.h \
|
||||
effects/Distortion.cpp \
|
||||
effects/Distortion.h \
|
||||
effects/DtmfGen.cpp \
|
||||
effects/DtmfGen.h \
|
||||
effects/EBUR128.cpp \
|
||||
effects/EBUR128.h \
|
||||
effects/Echo.cpp \
|
||||
effects/Echo.h \
|
||||
effects/Effect.cpp \
|
||||
effects/Effect.h \
|
||||
effects/EffectManager.cpp \
|
||||
effects/EffectManager.h \
|
||||
effects/EffectUI.cpp \
|
||||
effects/EffectUI.h \
|
||||
effects/Equalization.cpp \
|
||||
effects/Equalization.h \
|
||||
effects/Equalization48x.cpp \
|
||||
effects/Equalization48x.h \
|
||||
effects/Fade.cpp \
|
||||
effects/Fade.h \
|
||||
effects/FindClipping.cpp \
|
||||
effects/FindClipping.h \
|
||||
effects/Generator.cpp \
|
||||
effects/Generator.h \
|
||||
effects/Invert.cpp \
|
||||
effects/Invert.h \
|
||||
effects/LoadEffects.cpp \
|
||||
effects/LoadEffects.h \
|
||||
effects/Loudness.cpp \
|
||||
effects/Loudness.h \
|
||||
effects/Noise.cpp \
|
||||
effects/Noise.h \
|
||||
effects/NoiseReduction.cpp \
|
||||
effects/NoiseReduction.h \
|
||||
effects/NoiseRemoval.cpp \
|
||||
effects/NoiseRemoval.h \
|
||||
effects/Normalize.cpp \
|
||||
effects/Normalize.h \
|
||||
effects/Paulstretch.cpp \
|
||||
effects/Paulstretch.h \
|
||||
effects/Phaser.cpp \
|
||||
effects/Phaser.h \
|
||||
effects/RealtimeEffectManager.cpp \
|
||||
effects/RealtimeEffectManager.h \
|
||||
effects/Repair.cpp \
|
||||
effects/Repair.h \
|
||||
effects/Repeat.cpp \
|
||||
effects/Repeat.h \
|
||||
effects/Reverb.cpp \
|
||||
effects/Reverb.h \
|
||||
effects/Reverb_libSoX.h \
|
||||
effects/Reverse.cpp \
|
||||
effects/Reverse.h \
|
||||
effects/SBSMSEffect.cpp \
|
||||
effects/SBSMSEffect.h \
|
||||
effects/ScienFilter.cpp \
|
||||
effects/ScienFilter.h \
|
||||
effects/Silence.cpp \
|
||||
effects/Silence.h \
|
||||
effects/SimpleMono.cpp \
|
||||
effects/SimpleMono.h \
|
||||
effects/SoundTouchEffect.cpp \
|
||||
effects/SoundTouchEffect.h \
|
||||
effects/StereoToMono.cpp \
|
||||
effects/StereoToMono.h \
|
||||
effects/TimeScale.cpp \
|
||||
effects/TimeScale.h \
|
||||
effects/TimeWarper.cpp \
|
||||
effects/TimeWarper.h \
|
||||
effects/ToneGen.cpp \
|
||||
effects/ToneGen.h \
|
||||
effects/TruncSilence.cpp \
|
||||
effects/TruncSilence.h \
|
||||
effects/TwoPassSimpleMono.cpp \
|
||||
effects/TwoPassSimpleMono.h \
|
||||
effects/Wahwah.cpp \
|
||||
effects/Wahwah.h \
|
||||
export/Export.cpp \
|
||||
export/Export.h \
|
||||
export/ExportCL.cpp \
|
||||
export/ExportFLAC.cpp \
|
||||
export/ExportMP2.cpp \
|
||||
export/ExportMP3.cpp \
|
||||
export/ExportMP3.h \
|
||||
export/ExportMultiple.cpp \
|
||||
export/ExportMultiple.h \
|
||||
export/ExportOGG.cpp \
|
||||
export/ExportPCM.cpp \
|
||||
import/Import.cpp \
|
||||
import/Import.h \
|
||||
import/ImportFLAC.cpp \
|
||||
import/ImportForwards.h \
|
||||
import/ImportLOF.cpp \
|
||||
import/ImportMP3.cpp \
|
||||
import/ImportOGG.cpp \
|
||||
import/ImportPCM.cpp \
|
||||
import/ImportPlugin.h \
|
||||
import/ImportRaw.cpp \
|
||||
import/ImportRaw.h \
|
||||
import/RawAudioGuess.cpp \
|
||||
import/RawAudioGuess.h \
|
||||
import/FormatClassifier.cpp \
|
||||
import/FormatClassifier.h \
|
||||
import/MultiFormatReader.cpp \
|
||||
import/MultiFormatReader.h \
|
||||
import/SpecPowerMeter.cpp \
|
||||
import/SpecPowerMeter.h \
|
||||
menus/ClipMenus.cpp \
|
||||
menus/EditMenus.cpp \
|
||||
menus/ExtraMenus.cpp \
|
||||
menus/FileMenus.cpp \
|
||||
menus/HelpMenus.cpp \
|
||||
menus/LabelMenus.cpp \
|
||||
menus/NavigationMenus.cpp \
|
||||
menus/PluginMenus.cpp \
|
||||
menus/SelectMenus.cpp \
|
||||
menus/ToolbarMenus.cpp \
|
||||
menus/TrackMenus.cpp \
|
||||
menus/TransportMenus.cpp \
|
||||
menus/ViewMenus.cpp \
|
||||
menus/WindowMenus.cpp \
|
||||
ondemand/ODComputeSummaryTask.cpp \
|
||||
ondemand/ODComputeSummaryTask.h \
|
||||
ondemand/ODDecodeFFmpegTask.cpp \
|
||||
ondemand/ODDecodeFFmpegTask.h \
|
||||
ondemand/ODDecodeTask.cpp \
|
||||
ondemand/ODDecodeTask.h \
|
||||
ondemand/ODManager.cpp \
|
||||
ondemand/ODManager.h \
|
||||
ondemand/ODTask.cpp \
|
||||
ondemand/ODTask.h \
|
||||
ondemand/ODTaskThread.cpp \
|
||||
ondemand/ODTaskThread.h \
|
||||
ondemand/ODWaveTrackTaskQueue.cpp \
|
||||
ondemand/ODWaveTrackTaskQueue.h \
|
||||
prefs/BatchPrefs.cpp \
|
||||
prefs/BatchPrefs.h \
|
||||
prefs/DevicePrefs.cpp \
|
||||
prefs/DevicePrefs.h \
|
||||
prefs/DirectoriesPrefs.cpp \
|
||||
prefs/DirectoriesPrefs.h \
|
||||
prefs/EffectsPrefs.cpp \
|
||||
prefs/EffectsPrefs.h \
|
||||
prefs/ExtImportPrefs.cpp \
|
||||
prefs/ExtImportPrefs.h \
|
||||
prefs/GUIPrefs.cpp \
|
||||
prefs/GUIPrefs.h \
|
||||
prefs/GUISettings.h \
|
||||
prefs/ImportExportPrefs.cpp \
|
||||
prefs/ImportExportPrefs.h \
|
||||
prefs/KeyConfigPrefs.cpp \
|
||||
prefs/KeyConfigPrefs.h \
|
||||
prefs/LibraryPrefs.cpp \
|
||||
prefs/LibraryPrefs.h \
|
||||
prefs/MidiIOPrefs.cpp \
|
||||
prefs/MidiIOPrefs.h \
|
||||
prefs/ModulePrefs.cpp \
|
||||
prefs/ModulePrefs.h \
|
||||
prefs/MousePrefs.cpp \
|
||||
prefs/MousePrefs.h \
|
||||
prefs/PlaybackPrefs.cpp \
|
||||
prefs/PlaybackPrefs.h \
|
||||
prefs/PrefsDialog.cpp \
|
||||
prefs/PrefsDialog.h \
|
||||
prefs/PrefsPanel.h \
|
||||
prefs/ProjectsPrefs.cpp \
|
||||
prefs/ProjectsPrefs.h \
|
||||
prefs/QualityPrefs.cpp \
|
||||
prefs/QualityPrefs.h \
|
||||
prefs/RecordingPrefs.cpp \
|
||||
prefs/RecordingPrefs.h \
|
||||
prefs/SpectrogramSettings.cpp \
|
||||
prefs/SpectrogramSettings.h \
|
||||
prefs/SpectrumPrefs.cpp \
|
||||
prefs/SpectrumPrefs.h \
|
||||
prefs/ThemePrefs.cpp \
|
||||
prefs/ThemePrefs.h \
|
||||
prefs/TracksBehaviorsPrefs.cpp \
|
||||
prefs/TracksBehaviorsPrefs.h \
|
||||
prefs/TracksPrefs.cpp \
|
||||
prefs/TracksPrefs.h \
|
||||
prefs/WarningsPrefs.cpp \
|
||||
prefs/WarningsPrefs.h \
|
||||
prefs/WaveformPrefs.cpp \
|
||||
prefs/WaveformPrefs.h \
|
||||
prefs/WaveformSettings.cpp \
|
||||
prefs/WaveformSettings.h \
|
||||
toolbars/ControlToolBar.cpp \
|
||||
toolbars/ControlToolBar.h \
|
||||
toolbars/DeviceToolBar.cpp \
|
||||
toolbars/DeviceToolBar.h \
|
||||
toolbars/EditToolBar.cpp \
|
||||
toolbars/EditToolBar.h \
|
||||
toolbars/MeterToolBar.cpp \
|
||||
toolbars/MeterToolBar.h \
|
||||
toolbars/MixerToolBar.cpp \
|
||||
toolbars/MixerToolBar.h \
|
||||
toolbars/ScrubbingToolBar.cpp \
|
||||
toolbars/ScrubbingToolBar.h \
|
||||
toolbars/SelectionBar.cpp \
|
||||
toolbars/SelectionBar.h \
|
||||
toolbars/SpectralSelectionBar.cpp \
|
||||
toolbars/SpectralSelectionBar.h \
|
||||
toolbars/SpectralSelectionBarListener.h \
|
||||
toolbars/TimerToolBar.cpp \
|
||||
toolbars/ToolBar.cpp \
|
||||
toolbars/ToolBar.h \
|
||||
toolbars/ToolDock.cpp \
|
||||
toolbars/ToolDock.h \
|
||||
toolbars/ToolManager.cpp \
|
||||
toolbars/ToolManager.h \
|
||||
toolbars/ToolsToolBar.cpp \
|
||||
toolbars/ToolsToolBar.h \
|
||||
toolbars/TranscriptionToolBar.cpp \
|
||||
toolbars/TranscriptionToolBar.h \
|
||||
tracks/labeltrack/ui/LabelDefaultClickHandle.cpp \
|
||||
tracks/labeltrack/ui/LabelDefaultClickHandle.h \
|
||||
tracks/labeltrack/ui/LabelGlyphHandle.cpp \
|
||||
tracks/labeltrack/ui/LabelGlyphHandle.h \
|
||||
tracks/labeltrack/ui/LabelTextHandle.cpp \
|
||||
tracks/labeltrack/ui/LabelTextHandle.h \
|
||||
tracks/labeltrack/ui/LabelTrackControls.cpp \
|
||||
tracks/labeltrack/ui/LabelTrackControls.h \
|
||||
tracks/labeltrack/ui/LabelTrackView.cpp \
|
||||
tracks/labeltrack/ui/LabelTrackView.h \
|
||||
tracks/labeltrack/ui/LabelTrackVRulerControls.cpp \
|
||||
tracks/labeltrack/ui/LabelTrackVRulerControls.h \
|
||||
tracks/playabletrack/notetrack/ui/NoteTrackButtonHandle.cpp \
|
||||
tracks/playabletrack/notetrack/ui/NoteTrackButtonHandle.h \
|
||||
tracks/playabletrack/notetrack/ui/NoteTrackControls.cpp \
|
||||
tracks/playabletrack/notetrack/ui/NoteTrackControls.h \
|
||||
tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.cpp \
|
||||
tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.h \
|
||||
tracks/playabletrack/notetrack/ui/NoteTrackView.cpp \
|
||||
tracks/playabletrack/notetrack/ui/NoteTrackView.h \
|
||||
tracks/playabletrack/notetrack/ui/NoteTrackVRulerControls.cpp \
|
||||
tracks/playabletrack/notetrack/ui/NoteTrackVRulerControls.h \
|
||||
tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp \
|
||||
tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.h \
|
||||
tracks/playabletrack/notetrack/ui/StretchHandle.cpp \
|
||||
tracks/playabletrack/notetrack/ui/StretchHandle.h \
|
||||
tracks/playabletrack/ui/PlayableTrackButtonHandles.cpp \
|
||||
tracks/playabletrack/ui/PlayableTrackButtonHandles.h \
|
||||
tracks/playabletrack/ui/PlayableTrackControls.cpp \
|
||||
tracks/playabletrack/ui/PlayableTrackControls.h \
|
||||
tracks/playabletrack/wavetrack/ui/CutlineHandle.cpp \
|
||||
tracks/playabletrack/wavetrack/ui/CutlineHandle.h \
|
||||
tracks/playabletrack/wavetrack/ui/SampleHandle.cpp \
|
||||
tracks/playabletrack/wavetrack/ui/SampleHandle.h \
|
||||
tracks/playabletrack/wavetrack/ui/SpectrumView.cpp \
|
||||
tracks/playabletrack/wavetrack/ui/SpectrumView.h \
|
||||
tracks/playabletrack/wavetrack/ui/SpectrumVRulerControls.cpp \
|
||||
tracks/playabletrack/wavetrack/ui/SpectrumVRulerControls.h \
|
||||
tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp \
|
||||
tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.h \
|
||||
tracks/playabletrack/wavetrack/ui/WaveformView.cpp \
|
||||
tracks/playabletrack/wavetrack/ui/WaveformView.h \
|
||||
tracks/playabletrack/wavetrack/ui/WaveformVRulerControls.cpp \
|
||||
tracks/playabletrack/wavetrack/ui/WaveformVRulerControls.h \
|
||||
tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp \
|
||||
tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.h \
|
||||
tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp \
|
||||
tracks/playabletrack/wavetrack/ui/WaveTrackControls.h \
|
||||
tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp \
|
||||
tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.h \
|
||||
tracks/playabletrack/wavetrack/ui/WaveTrackView.cpp \
|
||||
tracks/playabletrack/wavetrack/ui/WaveTrackView.h \
|
||||
tracks/playabletrack/wavetrack/ui/WaveTrackViewConstants.cpp \
|
||||
tracks/playabletrack/wavetrack/ui/WaveTrackViewConstants.h \
|
||||
tracks/playabletrack/wavetrack/ui/WaveTrackVRulerControls.cpp \
|
||||
tracks/playabletrack/wavetrack/ui/WaveTrackVRulerControls.h \
|
||||
tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.cpp \
|
||||
tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.h \
|
||||
tracks/timetrack/ui/TimeTrackControls.cpp \
|
||||
tracks/timetrack/ui/TimeTrackControls.h \
|
||||
tracks/timetrack/ui/TimeTrackView.cpp \
|
||||
tracks/timetrack/ui/TimeTrackView.h \
|
||||
tracks/timetrack/ui/TimeTrackVRulerControls.cpp \
|
||||
tracks/timetrack/ui/TimeTrackVRulerControls.h \
|
||||
tracks/ui/BackgroundCell.cpp \
|
||||
tracks/ui/BackgroundCell.h \
|
||||
tracks/ui/ButtonHandle.h \
|
||||
tracks/ui/ButtonHandle.cpp \
|
||||
tracks/ui/CommonTrackControls.cpp \
|
||||
tracks/ui/CommonTrackControls.h \
|
||||
tracks/ui/CommonTrackPanelCell.cpp \
|
||||
tracks/ui/CommonTrackPanelCell.h \
|
||||
tracks/ui/CommonTrackView.cpp \
|
||||
tracks/ui/CommonTrackView.h \
|
||||
tracks/ui/EditCursorOverlay.cpp \
|
||||
tracks/ui/EditCursorOverlay.h \
|
||||
tracks/ui/EnvelopeHandle.cpp \
|
||||
tracks/ui/EnvelopeHandle.h \
|
||||
tracks/ui/PlayIndicatorOverlay.cpp \
|
||||
tracks/ui/PlayIndicatorOverlay.h \
|
||||
tracks/ui/Scrubbing.cpp \
|
||||
tracks/ui/Scrubbing.h \
|
||||
tracks/ui/ScrubUI.cpp \
|
||||
tracks/ui/ScrubUI.h \
|
||||
tracks/ui/SelectHandle.cpp \
|
||||
tracks/ui/SelectHandle.h \
|
||||
tracks/ui/SliderHandle.cpp \
|
||||
tracks/ui/SliderHandle.h \
|
||||
tracks/ui/TimeShiftHandle.cpp \
|
||||
tracks/ui/TimeShiftHandle.h \
|
||||
tracks/ui/TrackButtonHandles.cpp \
|
||||
tracks/ui/TrackButtonHandles.h \
|
||||
tracks/ui/TrackControls.cpp \
|
||||
tracks/ui/TrackControls.h \
|
||||
tracks/ui/TrackSelectHandle.cpp \
|
||||
tracks/ui/TrackSelectHandle.h \
|
||||
tracks/ui/TrackView.cpp \
|
||||
tracks/ui/TrackView.h \
|
||||
tracks/ui/TrackVRulerControls.cpp \
|
||||
tracks/ui/TrackVRulerControls.h \
|
||||
tracks/ui/ZoomHandle.cpp \
|
||||
tracks/ui/ZoomHandle.h \
|
||||
widgets/AButton.cpp \
|
||||
widgets/AButton.h \
|
||||
widgets/ASlider.cpp \
|
||||
widgets/ASlider.h \
|
||||
widgets/AttachableScrollBar.cpp \
|
||||
widgets/AttachableScrollBar.h \
|
||||
widgets/AudacityMessageBox.cpp \
|
||||
widgets/AudacityMessageBox.h \
|
||||
widgets/BackedPanel.cpp \
|
||||
widgets/BackedPanel.h \
|
||||
widgets/ErrorDialog.cpp \
|
||||
widgets/ErrorDialog.h \
|
||||
widgets/ExpandingToolBar.cpp \
|
||||
widgets/ExpandingToolBar.h \
|
||||
widgets/FileHistory.cpp \
|
||||
widgets/FileHistory.h \
|
||||
widgets/Grabber.cpp \
|
||||
widgets/Grabber.h \
|
||||
widgets/Grid.cpp \
|
||||
widgets/Grid.h \
|
||||
widgets/HelpSystem.cpp \
|
||||
widgets/HelpSystem.h \
|
||||
widgets/HtmlWindow.cpp \
|
||||
widgets/HtmlWindow.h \
|
||||
widgets/ImageRoll.cpp \
|
||||
widgets/ImageRoll.h \
|
||||
widgets/KeyView.cpp \
|
||||
widgets/KeyView.h \
|
||||
widgets/Meter.cpp \
|
||||
widgets/Meter.h \
|
||||
widgets/MeterPanelBase.cpp \
|
||||
widgets/MeterPanelBase.h \
|
||||
widgets/MultiDialog.cpp \
|
||||
widgets/MultiDialog.h \
|
||||
widgets/NumericTextCtrl.cpp \
|
||||
widgets/NumericTextCtrl.h \
|
||||
widgets/numformatter.cpp \
|
||||
widgets/numformatter.h \
|
||||
widgets/Overlay.cpp \
|
||||
widgets/Overlay.h \
|
||||
widgets/OverlayPanel.cpp \
|
||||
widgets/OverlayPanel.h \
|
||||
widgets/PopupMenuTable.cpp \
|
||||
widgets/PopupMenuTable.h \
|
||||
widgets/ProgressDialog.cpp \
|
||||
widgets/ProgressDialog.h \
|
||||
widgets/Ruler.cpp \
|
||||
widgets/Ruler.h \
|
||||
widgets/valnum.cpp \
|
||||
widgets/valnum.h \
|
||||
widgets/Warning.cpp \
|
||||
widgets/Warning.h \
|
||||
widgets/wxPanelWrapper.cpp \
|
||||
widgets/wxPanelWrapper.h \
|
||||
xml/XMLFileReader.cpp \
|
||||
xml/XMLFileReader.h \
|
||||
xml/XMLWriter.cpp \
|
||||
xml/XMLWriter.h \
|
||||
$(NULL)
|
||||
|
||||
if USE_AUDIO_UNITS
|
||||
audacity_CPPFLAGS += $(AUDIOUNITS_CFLAGS)
|
||||
audacity_LDADD += $(AUDIOUNITS_LIBS)
|
||||
audacity_SOURCES += \
|
||||
effects/audiounits/AudioUnitEffect.cpp \
|
||||
effects/audiounits/AudioUnitEffect.h \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
if USE_FFMPEG
|
||||
audacity_CPPFLAGS += $(FFMPEG_CFLAGS)
|
||||
audacity_LDADD += $(FFMPEG_LIBS)
|
||||
audacity_SOURCES += \
|
||||
export/ExportFFmpeg.cpp \
|
||||
export/ExportFFmpegDialogs.cpp \
|
||||
export/ExportFFmpegDialogs.h \
|
||||
import/ImportFFmpeg.cpp \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
if USE_GSTREAMER
|
||||
audacity_CPPFLAGS += $(GSTREAMER_CFLAGS)
|
||||
audacity_LDADD += $(GSTREAMER_LIBS)
|
||||
audacity_SOURCES += \
|
||||
import/ImportGStreamer.cpp \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
if USE_LADSPA
|
||||
audacity_CPPFLAGS += $(LADSPA_CFLAGS)
|
||||
audacity_LDADD += $(LADSPA_LIBS)
|
||||
audacity_SOURCES += \
|
||||
effects/ladspa/ladspa.h \
|
||||
effects/ladspa/LadspaEffect.cpp \
|
||||
effects/ladspa/LadspaEffect.h \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
if USE_LAME
|
||||
audacity_CPPFLAGS += $(LAME_CFLAGS)
|
||||
audacity_LDADD += $(LAME_LIBS)
|
||||
endif
|
||||
|
||||
if USE_LIBFLAC
|
||||
audacity_CPPFLAGS += $(FLAC_CFLAGS)
|
||||
audacity_LDADD += $(FLAC_LIBS)
|
||||
audacity_SOURCES += \
|
||||
ondemand/ODDecodeFlacTask.cpp \
|
||||
ondemand/ODDecodeFlacTask.h \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
if USE_LIBID3TAG
|
||||
audacity_CPPFLAGS += $(ID3TAG_CFLAGS)
|
||||
audacity_LDADD += $(ID3TAG_LIBS)
|
||||
endif
|
||||
|
||||
if USE_LIBMAD
|
||||
audacity_CPPFLAGS += $(LIBMAD_CFLAGS)
|
||||
audacity_LDADD += $(LIBMAD_LIBS)
|
||||
endif
|
||||
|
||||
if USE_LIBNYQUIST
|
||||
audacity_CPPFLAGS += $(LIBNYQUIST_CFLAGS)
|
||||
audacity_LDADD += $(LIBNYQUIST_LIBS)
|
||||
audacity_SOURCES += \
|
||||
effects/nyquist/LoadNyquist.cpp \
|
||||
effects/nyquist/LoadNyquist.h \
|
||||
effects/nyquist/Nyquist.cpp \
|
||||
effects/nyquist/Nyquist.h \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
if USE_LIBSOUNDTOUCH
|
||||
audacity_CPPFLAGS += $(SOUNDTOUCH_CFLAGS)
|
||||
audacity_LDADD += $(SOUNDTOUCH_LIBS)
|
||||
endif
|
||||
|
||||
if USE_LIBTWOLAME
|
||||
audacity_CPPFLAGS += $(LIBTWOLAME_CFLAGS)
|
||||
audacity_LDADD += $(LIBTWOLAME_LIBS)
|
||||
endif
|
||||
|
||||
if USE_LIBVORBIS
|
||||
audacity_CPPFLAGS += $(LIBVORBIS_CFLAGS)
|
||||
audacity_LDADD += $(LIBVORBIS_LIBS)
|
||||
endif
|
||||
|
||||
if USE_LV2
|
||||
audacity_CPPFLAGS += $(LV2_CFLAGS)
|
||||
audacity_LDADD += $(LV2_LIBS)
|
||||
audacity_SOURCES += \
|
||||
effects/lv2/LoadLV2.cpp \
|
||||
effects/lv2/LoadLV2.h \
|
||||
effects/lv2/LV2Effect.cpp \
|
||||
effects/lv2/LV2Effect.h \
|
||||
effects/lv2/NativeWindow.h \
|
||||
effects/lv2/lv2_external_ui.h \
|
||||
effects/lv2/zix/common.h \
|
||||
effects/lv2/zix/ring.cpp \
|
||||
effects/lv2/zix/ring.h \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
if USE_PORTSMF
|
||||
audacity_CPPFLAGS += $(PORTSMF_CFLAGS)
|
||||
audacity_LDADD += $(PORTSMF_LIBS)
|
||||
audacity_SOURCES += \
|
||||
NoteTrack.cpp \
|
||||
NoteTrack.h \
|
||||
import/ImportMIDI.cpp \
|
||||
import/ImportMIDI.h \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
if USE_PORTMIDI
|
||||
audacity_CPPFLAGS += $(PORTMIDI_CFLAGS)
|
||||
audacity_LDADD += $(PORTMIDI_LIBS)
|
||||
endif
|
||||
|
||||
if USE_QUICKTIME
|
||||
audacity_CPPFLAGS += $(QUICKTIME_CFLAGS)
|
||||
audacity_LDADD += $(QUICKTIME_LIBS)
|
||||
audacity_SOURCES += \
|
||||
import/ImportQT.cpp \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
if USE_SBSMS
|
||||
audacity_CPPFLAGS += $(SBSMS_CFLAGS)
|
||||
audacity_LDADD += $(SBSMS_LIBS)
|
||||
endif
|
||||
|
||||
if USE_VAMP
|
||||
audacity_CPPFLAGS += $(VAMP_CFLAGS)
|
||||
audacity_LDADD += $(VAMP_LIBS)
|
||||
audacity_SOURCES += \
|
||||
effects/vamp/LoadVamp.cpp \
|
||||
effects/vamp/LoadVamp.h \
|
||||
effects/vamp/VampEffect.cpp \
|
||||
effects/vamp/VampEffect.h \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
if USE_VST
|
||||
audacity_CPPFLAGS += $(VST_CFLAGS)
|
||||
audacity_LDADD += $(VST_LIBS)
|
||||
audacity_SOURCES += \
|
||||
effects/VST/aeffectx.h \
|
||||
effects/VST/VSTEffect.cpp \
|
||||
effects/VST/VSTEffect.h \
|
||||
effects/VST/VSTControlGTK.cpp \
|
||||
effects/VST/VSTControlGTK.h \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
# TODO: Check *.cpp and *.h files if they are needed.
|
||||
EXTRA_DIST = audacity.desktop.in xml/audacityproject.dtd \
|
||||
AudacityHeaders.cpp \
|
||||
AudacityHeaders.h \
|
||||
CrossFade.cpp \
|
||||
CrossFade.h \
|
||||
effects/ScoreAlignDialog.cpp \
|
||||
effects/ScoreAlignDialog.h \
|
||||
$(NULL)
|
||||
10094
src/Makefile.in
10094
src/Makefile.in
File diff suppressed because it is too large
Load Diff
@@ -1,28 +0,0 @@
|
||||
/**********************************************************************
|
||||
|
||||
Audacity: A Digital Audio Editor
|
||||
Audacity(R) is copyright (c) 1999-2015 Audacity Team.
|
||||
License: GPL v2. See License.txt.
|
||||
|
||||
RevisionIdent.h
|
||||
|
||||
|
||||
********************************************************************//*!
|
||||
|
||||
\file RevisionIdent.h
|
||||
|
||||
This entire file will be replaced by the revision identifier #defines
|
||||
These will be used by Audacity to:
|
||||
a) Give a link to the commit in the about box
|
||||
b) Identify the revision for Update checking.
|
||||
|
||||
*//********************************************************************/
|
||||
|
||||
// The commented out #defines below are like the one the build servers
|
||||
// will replace this file with:
|
||||
// #define REV_LONG "28864acb238cb3ca71dda190a2d93242591dd80e"
|
||||
// #define REV_TIME "Sun Apr 12 12:40:22 2015 +0100"
|
||||
|
||||
// If the above are not defined, Audacity will say:
|
||||
// "No revision identifier was provided"
|
||||
|
||||
@@ -1,201 +0,0 @@
|
||||
/* src/configtemplate.h. Generated from configure.ac by autoheader. */
|
||||
|
||||
/* define if Audacity is being installed under a name other than "audacity",
|
||||
so it can find the files it needs at runtime */
|
||||
#undef AUDACITY_NAME
|
||||
|
||||
/* Define we are compiling Audacity itself, not an Audacity plug-in */
|
||||
#undef BUILDING_AUDACITY
|
||||
|
||||
/* Use system FFmpeg library and disable dynamic loading of it. */
|
||||
#undef DISABLE_DYNAMIC_LOADING_FFMPEG
|
||||
|
||||
/* Define if LAME should be linked at compile time */
|
||||
#undef DISABLE_DYNAMIC_LOADING_LAME
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
|
||||
/* Define to enable sse */
|
||||
#undef ENABLE_SSE
|
||||
|
||||
/* Define to 1 if you have the <alloca.h> header file. */
|
||||
#undef HAVE_ALLOCA_H
|
||||
|
||||
/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
|
||||
CoreFoundation framework. */
|
||||
#undef HAVE_CFLOCALECOPYCURRENT
|
||||
|
||||
/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
|
||||
the CoreFoundation framework. */
|
||||
#undef HAVE_CFPREFERENCESCOPYAPPVALUE
|
||||
|
||||
/* Define to 1 if you have the `clock_gettime' function. */
|
||||
#undef HAVE_CLOCK_GETTIME
|
||||
|
||||
/* Define if the GNU dcgettext() function is already present or preinstalled.
|
||||
*/
|
||||
#undef HAVE_DCGETTEXT
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
#undef HAVE_DLFCN_H
|
||||
|
||||
/* Define if the GNU gettext() function is already present or preinstalled. */
|
||||
#undef HAVE_GETTEXT
|
||||
|
||||
/* Define if GTK is available */
|
||||
#undef HAVE_GTK
|
||||
|
||||
/* Define if you have the iconv() function and it works. */
|
||||
#undef HAVE_ICONV
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
/* Define to 1 if you have the <libudev.h> header file. */
|
||||
#undef HAVE_LIBUDEV_H
|
||||
|
||||
/* Define if you have C99's lrint function. */
|
||||
#undef HAVE_LRINT
|
||||
|
||||
/* Define if you have C99's lrintf function. */
|
||||
#undef HAVE_LRINTF
|
||||
|
||||
/* Define to 1 if you have the <memory.h> header file. */
|
||||
#undef HAVE_MEMORY_H
|
||||
|
||||
/* Define to 1 if you have the `mlock' function. */
|
||||
#undef HAVE_MLOCK
|
||||
|
||||
/* Define to 1 if you have the `nanosleep' function. */
|
||||
#undef HAVE_NANOSLEEP
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#undef HAVE_STDINT_H
|
||||
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#undef HAVE_STDLIB_H
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#undef HAVE_STRINGS_H
|
||||
|
||||
/* Define to 1 if you have the <string.h> header file. */
|
||||
#undef HAVE_STRING_H
|
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
#undef HAVE_SYS_STAT_H
|
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
#undef HAVE_SYS_TYPES_H
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
#undef HAVE_UNISTD_H
|
||||
|
||||
/* Define to 1 or 0, depending whether the compiler supports simple visibility
|
||||
declarations. */
|
||||
#undef HAVE_VISIBILITY
|
||||
|
||||
/* define as prefix where Audacity is installed */
|
||||
#undef INSTALL_PREFIX
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
#undef LT_OBJDIR
|
||||
|
||||
/* Name of package */
|
||||
#undef PACKAGE
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#undef PACKAGE_BUGREPORT
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#undef PACKAGE_NAME
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#undef PACKAGE_STRING
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#undef PACKAGE_TARNAME
|
||||
|
||||
/* Define to the home page for this package. */
|
||||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#undef STDC_HEADERS
|
||||
|
||||
/* Define if Audio Unit plug-ins are enabled (Mac OS X only) */
|
||||
#undef USE_AUDIO_UNITS
|
||||
|
||||
/* Define if ffmpeg (multi-format import and export) support should be enabled
|
||||
*/
|
||||
#undef USE_FFMPEG
|
||||
|
||||
/* Define if GStreamer 1 is present */
|
||||
#undef USE_GSTREAMER
|
||||
|
||||
/* Define if LADSPA plug-ins are enabled */
|
||||
#undef USE_LADSPA
|
||||
|
||||
/* Define if the FLAC library is present */
|
||||
#undef USE_LIBFLAC
|
||||
|
||||
/* Define if libid3tag is present */
|
||||
#undef USE_LIBID3TAG
|
||||
|
||||
/* Define if mp3 support is implemented with the libmad library */
|
||||
#undef USE_LIBMAD
|
||||
|
||||
/* Define if libtwolame (MP2 export) support should be enabled */
|
||||
#undef USE_LIBTWOLAME
|
||||
|
||||
/* Define if the ogg vorbis decoding library is present */
|
||||
#undef USE_LIBVORBIS
|
||||
|
||||
/* Define if LV2 support should be enabled */
|
||||
#undef USE_LV2
|
||||
|
||||
/* Define if midi support should be enabled */
|
||||
#undef USE_MIDI
|
||||
|
||||
/* Define if Nyquist support should be enabled */
|
||||
#undef USE_NYQUIST
|
||||
|
||||
/* Define if midi support should be enabled */
|
||||
#undef USE_PORTMIDI
|
||||
|
||||
/* Define if PortMixer support should be enabled */
|
||||
#undef USE_PORTMIXER
|
||||
|
||||
/* Define if QuickTime importing is enabled (Mac OS X only) */
|
||||
#undef USE_QUICKTIME
|
||||
|
||||
/* Define if SBSMS support should be enabled */
|
||||
#undef USE_SBSMS
|
||||
|
||||
/* Define if SoundTouch support should be enabled */
|
||||
#undef USE_SOUNDTOUCH
|
||||
|
||||
/* Define if Vamp analysis plugin support should be enabled */
|
||||
#undef USE_VAMP
|
||||
|
||||
/* Define if VST plug-in support is enabled */
|
||||
#undef USE_VST
|
||||
|
||||
/* Version number of package */
|
||||
#undef VERSION
|
||||
|
||||
/* Placeholder for large file support */
|
||||
#undef _FILE_OFFSET_BITS
|
||||
|
||||
/* We're using cygwin */
|
||||
#undef __CYGWIN__
|
||||
|
||||
/* Define to empty if `const' does not conform to ANSI C. */
|
||||
#undef const
|
||||
|
||||
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
||||
#undef size_t
|
||||
Reference in New Issue
Block a user