~ubuntu-branches/ubuntu/trusty/lmms/trusty

« back to all changes in this revision

Viewing changes to plugins/spectrum_analyzer/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Israel Dahl
  • Date: 2013-02-28 20:58:18 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20130228205818-spbc545gwofxkkif
Tags: 0.4.14-0ubuntu1
* New upstream release.
  - Graphically enhanced AudioFileProcessor plugin
  - Fixed bug with magnetic knobs
  - Fixed various crashes
  - Completely revised VST support (improved VST effect support,
  timesync support and many more)
  - Added multitrack export
  - Added Hydrogen song import plugin
  - Fixed wrong chords
  - Improvements to automation framework
* debian/lmms.install debian/lmms-common.install
  - moved /usr/share/applications to lmms.install
* debian/control
  - updated Standards-Version to 3.9.4
* debian/copyright
  - updated to make current
* debian/rules
  - fixed Lintian errors during build

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
IF(LMMS_HAVE_FFTW3F)
2
 
        INCLUDE(BuildPlugin)
3
 
        INCLUDE_DIRECTORIES(${FFTW3F_INCLUDE_DIRS})
4
 
        LINK_DIRECTORIES(${FFTW3F_LIBRARY_DIRS})
5
 
        LINK_LIBRARIES(${FFTW3F_LIBRARIES})
6
 
        BUILD_PLUGIN(spectrumanalyzer spectrum_analyzer.cpp spectrumanalyzer_controls.cpp spectrumanalyzer_control_dialog.cpp spectrum_analyzer.h spectrumanalyzer_controls.h spectrumanalyzer_control_dialog.h MOCFILES spectrumanalyzer_controls.h EMBEDDED_RESOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.png)
7
 
ENDIF(LMMS_HAVE_FFTW3F)
8
 
 
 
1
INCLUDE(BuildPlugin)
 
2
INCLUDE_DIRECTORIES(${FFTW3F_INCLUDE_DIRS})
 
3
LINK_DIRECTORIES(${FFTW3F_LIBRARY_DIRS})
 
4
LINK_LIBRARIES(${FFTW3F_LIBRARIES})
 
5
BUILD_PLUGIN(spectrumanalyzer spectrum_analyzer.cpp spectrumanalyzer_controls.cpp spectrumanalyzer_control_dialog.cpp spectrum_analyzer.h spectrumanalyzer_controls.h spectrumanalyzer_control_dialog.h MOCFILES spectrumanalyzer_controls.h EMBEDDED_RESOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.png)