diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-05-02 18:17:00 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-05-02 18:17:00 +0000 |
| commit | 2e2a47aa3d46cacf42f776138429fc2855874739 (patch) | |
| tree | 6b294dd8d7a8aad36884af8c6ba01c76ba9c6021 /src/plugins/General/fileops/fileops.pro | |
| parent | d25fdc99931a393a19a78d8fdc6638322d3ca580 (diff) | |
| download | qmmp-2e2a47aa3d46cacf42f776138429fc2855874739.tar.gz qmmp-2e2a47aa3d46cacf42f776138429fc2855874739.tar.bz2 qmmp-2e2a47aa3d46cacf42f776138429fc2855874739.zip | |
creating file operations plugin structure
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@927 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/fileops/fileops.pro')
| -rw-r--r-- | src/plugins/General/fileops/fileops.pro | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/plugins/General/fileops/fileops.pro b/src/plugins/General/fileops/fileops.pro new file mode 100644 index 000000000..90271d644 --- /dev/null +++ b/src/plugins/General/fileops/fileops.pro @@ -0,0 +1,44 @@ +include(../../plugins.pri) + +INCLUDEPATH += ../../../../src +CONFIG += release \ +warn_on \ +plugin + +TARGET =$$PLUGINS_PREFIX/General/fileops +unix:QMAKE_CLEAN = $$PLUGINS_PREFIX/General/libfileops.so + + +TEMPLATE = lib +unix:QMAKE_LIBDIR += ../../../../lib +unix:LIBS += -lqmmpui -lqmmp + +win32:QMAKE_LIBDIR += ../../../../bin +win32:LIBS += -lqmmpui0 -lqmmp0 + +#TRANSLATIONS = translations/fileops_plugin_cs.ts +# translations/fileops_plugin_de.ts +# translations/fileops_plugin_zh_CN.ts +# translations/fileops_plugin_zh_TW.ts +# translations/fileops_plugin_ru.ts +# translations/fileops_plugin_pl.ts +# translations/fileops_plugin_uk_UA.ts +#RESOURCES = translations/translations.qrc +wnix{ +isEmpty(LIB_DIR){ + LIB_DIR = /lib +} +target.path = $$LIB_DIR/qmmp/General +INSTALLS += target +} +HEADERS += fileopsfactory.h \ + fileops.h \ + settingsdialog.h +win32:HEADERS += ../../../../src/qmmpui/general.h +SOURCES += fileopsfactory.cpp \ + fileops.cpp \ + settingsdialog.cpp + +FORMS += settingsdialog.ui + + |
