diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-05-01 22:43:58 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-05-01 22:43:58 +0900 |
commit | 0df7d0722be947a5a9b3e54fc2693fdcc4221a9b (patch) | |
tree | daa919d6ebe9c90916976237dc04283f5bf5a980 /src/CMakeLists.txt | |
parent | 43f6b98c7d792763cce00715765748056049307d (diff) | |
download | tdeio-appinfo-0df7d0722be947a5a9b3e54fc2693fdcc4221a9b.tar.gz tdeio-appinfo-0df7d0722be947a5a9b3e54fc2693fdcc4221a9b.zip |
First buildable version. Still some functionality to fix up.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..331739e --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,45 @@ +################################################# +# +# (C) 2021 Michele Calgaro +# Michele (DOT) Calgaro (AT) yahoo.it +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( icons ) + +include_directories( + ${TQT_INCLUDE_DIRS} + ${TDE_INCLUDE_DIR} + ${CMAKE_BINARY_DIR} + ${CMAKE_BINARY_DIR}/src + ${CMAKE_SOURCE_DIR}/src +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES app.protocol DESTINATION ${SERVICES_INSTALL_DIR} ) +install( FILES appinfo.protocol DESTINATION ${SERVICES_INSTALL_DIR} ) + + +##### tdeio_appinfo (module) ####################### + +set( target tdeio_appinfo ) + +set( ${target}_SRCS + app.cpp appimpl.cpp +) + +tde_add_kpart( ${target} AUTOMOC + SOURCES ${${target}_SRCS} + LINK tdeio-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) |