diff options
Diffstat (limited to 'kooka')
-rw-r--r-- | kooka/CMakeLists.txt | 48 | ||||
-rw-r--r-- | kooka/pics/CMakeLists.txt | 16 |
2 files changed, 64 insertions, 0 deletions
diff --git a/kooka/CMakeLists.txt b/kooka/CMakeLists.txt new file mode 100644 index 00000000..a45f3983 --- /dev/null +++ b/kooka/CMakeLists.txt @@ -0,0 +1,48 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +tde_import( libkscan ) + +add_subdirectory( pics ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/libkscan + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES kooka.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} ) +install( FILES kookarc DESTINATION ${CONFIG_INSTALL_DIR} ) +install( FILES kookaui.rc DESTINATION ${DATA_INSTALL_DIR}/kooka ) + + +##### kooka (executable) ######################## + +tde_add_executable( kooka AUTOMOC + SOURCES + main.cpp kooka.cpp kookaview.cpp kookapref.cpp img_saver.cpp + ksaneocr.cpp kookaimage.cpp kookaimagemeta.cpp scanpackager.cpp + imgnamecombo.cpp imageselectline.cpp thumbview.cpp thumbviewitem.cpp + dwmenuaction.cpp kocrbase.cpp kocrgocr.cpp kocrkadmos.cpp + kadmosocr.cpp ocrword.cpp ocrresedit.cpp kookaprint.cpp + imgprintdialog.cpp kocrocrad.cpp + LINK kscan-shared kparts-shared kdeprint-shared + DESTINATION ${BIN_INSTALL_DIR} +) diff --git a/kooka/pics/CMakeLists.txt b/kooka/pics/CMakeLists.txt new file mode 100644 index 00000000..9f738af8 --- /dev/null +++ b/kooka/pics/CMakeLists.txt @@ -0,0 +1,16 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES + mirror-both.png mirror-horiz.png mirror-vert.png scaletoheight.png + scaletowidth.png scaleorig.png ocr.png ocr-select.png + newfromselect.png thumbviewtile.png gocr.png ocrad.png lockzoom.png + DESTINATION ${DATA_INSTALL_DIR}/kooka/pics ) |