diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-08-19 09:43:17 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-08-19 09:43:17 +0000 |
| commit | 1ef98753ff23287aaa23e0c35e03719256ea268f (patch) | |
| tree | 11cb2d4f70444fb7cc704e04aca7fe41869778da /src/plugins/Output/alsa/CMakeLists.txt | |
| parent | 7a8026a4ad54588c131fefbdb5dc3fd118054011 (diff) | |
| download | qmmp-1ef98753ff23287aaa23e0c35e03719256ea268f.tar.gz qmmp-1ef98753ff23287aaa23e0c35e03719256ea268f.tar.bz2 qmmp-1ef98753ff23287aaa23e0c35e03719256ea268f.zip | |
using QSocketNotifier to track alsa volume (patch by Hong Jen Yee)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5424 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Output/alsa/CMakeLists.txt')
| -rw-r--r-- | src/plugins/Output/alsa/CMakeLists.txt | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/plugins/Output/alsa/CMakeLists.txt b/src/plugins/Output/alsa/CMakeLists.txt index 6406d7e75..7b4e361fb 100644 --- a/src/plugins/Output/alsa/CMakeLists.txt +++ b/src/plugins/Output/alsa/CMakeLists.txt @@ -37,17 +37,12 @@ SET(libalsa_SRCS settingsdialog.cpp ) -SET(libalsa_HDRS - outputalsa.h -) - SET(libalsa_RCCS translations/translations.qrc) QT4_ADD_RESOURCES(libalsa_RCC_SRCS ${libalsa_RCCS}) # user interface - SET(libalsa_UIS settingsdialog.ui ) @@ -58,8 +53,7 @@ QT4_WRAP_UI(libalsa_UIS_H ${libalsa_UIS}) include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(ALSA_FOUND) -ADD_LIBRARY(alsa MODULE ${libalsa_SRCS} ${libalsa_UIS_H} - ${libalsa_RCC_SRCS} ${libalsa_HDRS}) +ADD_LIBRARY(alsa MODULE ${libalsa_SRCS} ${libalsa_UIS_H} ${libalsa_RCC_SRCS}) add_dependencies(alsa qmmp) target_link_libraries(alsa ${QT_LIBRARIES} -lqmmp ${ALSA_LDFLAGS}) install(TARGETS alsa DESTINATION ${LIB_DIR}/qmmp/Output) |
