diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-09-10 12:04:51 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-09-10 12:04:51 +0000 |
| commit | 7586a65427862831590a963b5f8f9d2712271ca0 (patch) | |
| tree | f08c46e911f61aba4a54afc2aee64c9b0ec61d23 /src/qmmpui/CMakeLists.txt | |
| parent | fd6e0ed378bf00b8616f4d054c0c41f1156dd078 (diff) | |
| download | qmmp-7586a65427862831590a963b5f8f9d2712271ca0.tar.gz qmmp-7586a65427862831590a963b5f8f9d2712271ca0.tar.bz2 qmmp-7586a65427862831590a963b5f8f9d2712271ca0.zip | |
added new details dialog, disabled input plugins due api changes
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1194 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/CMakeLists.txt')
| -rw-r--r-- | src/qmmpui/CMakeLists.txt | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/qmmpui/CMakeLists.txt b/src/qmmpui/CMakeLists.txt index 5ff90bbcc..af54b4145 100644 --- a/src/qmmpui/CMakeLists.txt +++ b/src/qmmpui/CMakeLists.txt @@ -36,6 +36,8 @@ SET(libqmmpui_SRCS playlistitem.cpp mediaplayer.cpp playlistsettings.cpp + detailsdialog.cpp + tageditor.cpp ) SET(libqmmpui_MOC_HDRS @@ -56,6 +58,8 @@ SET(libqmmpui_MOC_HDRS playlistitem.h mediaplayer.h playlistsettings.h + detailsdialog.h + tageditor.h ) SET(libqmmpui_DEVEL_HDRS @@ -72,16 +76,25 @@ SET(libqmmpui_DEVEL_HDRS playlistitem.h playlistmodel.h playlistparser.h + detailsdialog.h + tageditor.h ) +SET(libqmmpui_UIS + detailsdialog.ui + tageditor.ui +) + +QT4_WRAP_UI(libqmmpui_UIS_H ${libqmmpui_UIS}) + QT4_ADD_RESOURCES(libqmmpui_RCC_SRCS translations/libqmmpui_locales.qrc) QT4_WRAP_CPP(libqmmpui_MOC_SRCS ${libqmmpui_MOC_HDRS}) include_directories(${CMAKE_CURRENT_BINARY_DIR}) -ADD_LIBRARY(qmmpui SHARED ${libqmmpui_SRCS} ${libqmmpui_MOC_SRCS} ${libqmmpui_RCC_SRCS}) +ADD_LIBRARY(qmmpui SHARED ${libqmmpui_SRCS} ${libqmmpui_MOC_SRCS} ${libqmmpui_RCC_SRCS} ${libqmmpui_UIS_H}) target_link_libraries(qmmpui ${QT_LIBRARIES} -lqmmp) add_dependencies(qmmpui libqmmp) SET_TARGET_PROPERTIES(qmmpui PROPERTIES VERSION ${QMMP_VERSION} SOVERSION ${QMMP_SOVERSION}) |
