diff options
Diffstat (limited to 'amarok/src/collectionscanner/CMakeLists.txt')
-rw-r--r-- | amarok/src/collectionscanner/CMakeLists.txt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/amarok/src/collectionscanner/CMakeLists.txt b/amarok/src/collectionscanner/CMakeLists.txt new file mode 100644 index 00000000..c5b4c464 --- /dev/null +++ b/amarok/src/collectionscanner/CMakeLists.txt @@ -0,0 +1,33 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/amarok/src + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### amarokcollectionscanner (executable) ###### + +tde_add_executable( amarokcollectionscanner AUTOMOC + SOURCES + main.cpp collectionscannerdcopiface.skel + collectionscannerdcophandler.cpp collectionscanner.cpp + LINK amarok-shared + DESTINATION ${BIN_INSTALL_DIR} +) |