diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2010-11-07 16:12:23 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2010-11-07 16:12:23 +0000 |
| commit | 0d55d4504e5aedbcde0386d4f18864c1eed9b25d (patch) | |
| tree | 6516771ba353a49dae7764262b6c01cdb4716882 /src/plugins/Output/CMakeLists.txt | |
| parent | 8b1fde7fe3f5bfd7584e7ac6915023d837e35641 (diff) | |
| download | qmmp-0d55d4504e5aedbcde0386d4f18864c1eed9b25d.tar.gz qmmp-0d55d4504e5aedbcde0386d4f18864c1eed9b25d.tar.bz2 qmmp-0d55d4504e5aedbcde0386d4f18864c1eed9b25d.zip | |
moved oss4 support to separate plugin, fixed some bugs, updated documentation
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1983 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Output/CMakeLists.txt')
| -rw-r--r-- | src/plugins/Output/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/Output/CMakeLists.txt b/src/plugins/Output/CMakeLists.txt index de01f25e6..da349e5a3 100644 --- a/src/plugins/Output/CMakeLists.txt +++ b/src/plugins/Output/CMakeLists.txt @@ -1,6 +1,7 @@ SET(USE_ALSA TRUE CACHE BOOL "enable/disable alsa plugin") SET(USE_JACK TRUE CACHE BOOL "enable/disable jack plugin") SET(USE_OSS TRUE CACHE BOOL "enable/disable oss plugin") +SET(USE_OSS4 FALSE CACHE BOLL "enable/disable oss4 plugin") SET(USE_PULSE TRUE CACHE BOOL "enable/disable pulse audio plugin") SET(USE_NULL TRUE CACHE BOOL "enable/disable null output plugin") SET(USE_WAVEOUT TRUE CACHE BOOL "enable/disable Win32 waveout plugin") @@ -17,6 +18,10 @@ IF(USE_OSS) add_subdirectory(oss) ENDIF(USE_OSS) +IF(USE_OSS4) +add_subdirectory(oss4) +ENDIF(USE_OSS4) + IF(USE_PULSE) add_subdirectory(pulseaudio) ENDIF(USE_PULSE) |
