summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/dub
diff options
context:
space:
mode:
Diffstat (limited to 'noatun-plugins/dub')
-rw-r--r--noatun-plugins/dub/CMakeLists.txt12
-rw-r--r--noatun-plugins/dub/dub/CMakeLists.txt42
2 files changed, 54 insertions, 0 deletions
diff --git a/noatun-plugins/dub/CMakeLists.txt b/noatun-plugins/dub/CMakeLists.txt
new file mode 100644
index 0000000..fa2f5ab
--- /dev/null
+++ b/noatun-plugins/dub/CMakeLists.txt
@@ -0,0 +1,12 @@
+#################################################
+#
+# (C) 2013 Slávek Banko
+# slavek (DOT) banko (AT) axis.cz
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+add_subdirectory( dub )
diff --git a/noatun-plugins/dub/dub/CMakeLists.txt b/noatun-plugins/dub/dub/CMakeLists.txt
new file mode 100644
index 0000000..1ed6223
--- /dev/null
+++ b/noatun-plugins/dub/dub/CMakeLists.txt
@@ -0,0 +1,42 @@
+#################################################
+#
+# (C) 2013 Slávek Banko
+# slavek (DOT) banko (AT) axis.cz
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}/tde
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TDE_LIB_DIR}
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### noatundub (kpart) ##########
+
+tde_add_kpart( noatundub AUTOMOC
+ SOURCES
+ dubprefs.ui dubplaylistitem.cpp dubplaylist.cpp fileselectorwidget.cpp
+ dubview.cpp dubapp.cpp dub.cpp dubconfigmodule.cpp
+ LINK tdeio-shared noatun
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES dub.plugin
+ DESTINATION ${DATA_INSTALL_DIR}/noatun
+)