diff options
Diffstat (limited to 'kiconedit/CMakeLists.txt')
-rw-r--r-- | kiconedit/CMakeLists.txt | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/kiconedit/CMakeLists.txt b/kiconedit/CMakeLists.txt new file mode 100644 index 00000000..0724ce14 --- /dev/null +++ b/kiconedit/CMakeLists.txt @@ -0,0 +1,42 @@ +################################################# +# +# (C) 2010-2011 Calvin Morrison +# mutantturkey@gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory ( pics ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +#### other data ################################# + +install( FILES kiconedit.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} ) +install( FILES kiconeditui.rc DESTINATION ${DATA_INSTALL_DIR}/kiconedit ) + + +#### kiconedit (executable) ##################### + +tde_add_executable( kiconedit AUTOMOC + SOURCES + utils.cpp main.cpp kiconedit.cpp kicongrid.cpp + kiconcolors.cpp kcolorgrid.cpp palettetoolbar.cpp + kicon.cpp kresize.cpp knew.cpp properties.cpp + kiconeditslots.cpp kiconconfig.cpp + LINK kio-shared kdeprint-shared + DESTINATION ${BIN_INSTALL_DIR} +) |