diff options
Diffstat (limited to 'noatun-plugins/wavecapture/CMakeLists.txt')
-rw-r--r-- | noatun-plugins/wavecapture/CMakeLists.txt | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/noatun-plugins/wavecapture/CMakeLists.txt b/noatun-plugins/wavecapture/CMakeLists.txt new file mode 100644 index 0000000..38b061d --- /dev/null +++ b/noatun-plugins/wavecapture/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} + ${ARTS_INCLUDE_DIRS} + ${TDE_INCLUDE_DIR}/tde/arts + ${TDE_INCLUDE_DIR}/tde + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TDE_LIB_DIR} + ${TQT_LIBRARY_DIRS} +) + + +##### noatunwavecapture (kpart) ########## + +tde_add_kpart( noatunwavecapture AUTOMOC + SOURCES wavecapture.cpp + LINK artskde-shared tdeio-shared artsmoduleseffects noatun noatunarts m + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### other data ################################ + +install( FILES wavecapture.plugin + DESTINATION ${DATA_INSTALL_DIR}/noatun +) |