~ubuntu-branches/ubuntu/precise/lmms/precise-proposed

« back to all changes in this revision

Viewing changes to plugins/zynaddsubfx/src/Output/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-11-12 13:32:32 UTC
  • mfrom: (1.1.9 upstream) (3.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20101112133232-vdld83iyji8srqti
Tags: 0.4.7-2ubuntu1
* Re-sync with Debian (LP: #606533):
  - Replace build-dep on libwine-dev with libwine-dev-unstable to build
    against the newer Wine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set(zynaddsubfx_output_SRCS
 
2
        Recorder.cpp
 
3
        WAVaudiooutput.cpp
 
4
)
 
5
 
 
6
if(AlsaMidiOutput)
 
7
        set(zynaddsubfx_output_SRCS
 
8
                ${zynaddsubfx_output_SRCS}
 
9
                OSSaudiooutput.cpp)
 
10
        set(zynaddsubfx_output_lib ${ASOUND_LIBRARY})
 
11
endif(AlsaMidiOutput)
 
12
 
 
13
if(JackOutput)
 
14
        include_directories(${JACK_INCLUDE_DIR})
 
15
        set(zynaddsubfx_output_SRCS
 
16
                ${zynaddsubfx_output_SRCS}
 
17
                JACKaudiooutput.cpp)
 
18
        set(zynaddsubfx_output_lib ${JACK_LIBRARIES})
 
19
endif(JackOutput)
 
20
 
 
21
if(PortAudioOutput)
 
22
        include_directories(${PORTAUDIO_INCLUDE_DIR})
 
23
        set(zynaddsubfx_output_SRCS
 
24
                ${zynaddsubfx_output_SRCS}
 
25
                PAaudiooutput.cpp)
 
26
        set(zynaddsubfx_output_lib ${PORTAUDIO_LIBRARIES})
 
27
endif(PortAudioOutput)
 
28
 
 
29
add_library(zynaddsubfx_output STATIC
 
30
        ${zynaddsubfx_output_SRCS} 
 
31
        )
 
32
 
 
33
target_link_libraries(zynaddsubfx_output ${zynaddsubfx_output_lib})