diff options
Diffstat (limited to 'khexedit')
-rw-r--r-- | khexedit/CMakeLists.txt | 61 | ||||
-rw-r--r-- | khexedit/lib/CMakeLists.txt | 52 | ||||
-rw-r--r-- | khexedit/lib/codecs/CMakeLists.txt | 35 | ||||
-rw-r--r-- | khexedit/lib/controller/CMakeLists.txt | 33 | ||||
-rw-r--r-- | khexedit/parts/CMakeLists.txt | 13 | ||||
-rw-r--r-- | khexedit/parts/kbytesedit/CMakeLists.txt | 41 | ||||
-rw-r--r-- | khexedit/parts/kpart/CMakeLists.txt | 46 | ||||
-rw-r--r-- | khexedit/pics/CMakeLists.txt | 16 |
8 files changed, 297 insertions, 0 deletions
diff --git a/khexedit/CMakeLists.txt b/khexedit/CMakeLists.txt new file mode 100644 index 0000000..fbc83c5 --- /dev/null +++ b/khexedit/CMakeLists.txt @@ -0,0 +1,61 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( pics ) +add_subdirectory( lib ) +add_subdirectory( parts ) + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### khexedit (executable) ##################### + +tde_add_executable( khexedit AUTOMOC + SOURCES main.cc toplevel.cc hexmanagerwidget.cc + hexeditorwidget.cc hextoolwidget.cc + hexviewwidget.cc hexbuffer.cc conversion.cc + dialog.cc hexvalidator.cc hexclipboard.cc + optiondialog.cc printdialogpage.cc + statusbarprogress.cc hexprinter.cc + hexerror.cc draglabel.cc stringdialog.cc + bitswapwidget.cc chartabledialog.cc + hexdrag.cc exportdialog.cc fileinfodialog.cc + converterdialog.cc listview.cc searchbar.cc + LINK kio-shared tdeprint-shared + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### icons ##################################### + +tde_install_icons( khexedit) + + +##### other data ################################ + +install( FILES khexeditui.rc + DESTINATION ${DATA_INSTALL_DIR}/khexedit +) + +install( FILES khexedit.desktop + DESTINATION ${XDG_APPS_INSTALL_DIR} +) + diff --git a/khexedit/lib/CMakeLists.txt b/khexedit/lib/CMakeLists.txt new file mode 100644 index 0000000..7d16b3d --- /dev/null +++ b/khexedit/lib/CMakeLists.txt @@ -0,0 +1,52 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( controller ) +add_subdirectory( codecs ) + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${CMAKE_CURRENT_BINARY_DIR}/controller + ${CMAKE_CURRENT_BINARY_DIR}/codecs +) + + +##### khexeditcommon (shared) ################### + +tde_add_library( khexeditcommon SHARED AUTOMOC + SOURCES kcolumn.cpp kbordercolumn.cpp + koffsetcolumn.cpp kbuffercolumn.cpp + kvaluecolumn.cpp kcharcolumn.cpp + kcolumnsview.cpp khexedit.cpp kbytesedit.cpp + koffsetformat.cpp kdatabuffer.cpp + kwrappingrobuffer.cpp kplainbuffer.cpp + kfixedsizebuffer.cpp kbigbuffer.cpp + kbuffercursor.cpp kbufferlayout.cpp + kbufferranges.cpp kcursor.cpp kbufferdrag.cpp + kwordbufferservice.cpp ksectionlist.cpp + kcoordrangelist.cpp kbordercoltextexport.cpp + koffsetcoltextexport.cpp + kbuffercoltextexport.cpp + kvaluecoltextexport.cpp + kcharcoltextexport.cpp + LINK tdecore-shared kcontroller-static + khecodecs-static + DESTINATION ${LIB_INSTALL_DIR} +) + diff --git a/khexedit/lib/codecs/CMakeLists.txt b/khexedit/lib/codecs/CMakeLists.txt new file mode 100644 index 0000000..8ef47ad --- /dev/null +++ b/khexedit/lib/codecs/CMakeLists.txt @@ -0,0 +1,35 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# 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} + ${CMAKE_SOURCE_DIR}/khexedit/lib + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### khecodecs (static) ######################## + +tde_add_library( khecodecs STATIC_PIC AUTOMOC + SOURCES kcharcodec.cpp kbytecodec.cpp + ktextcharcodec.cpp kebcdic1047charcodec.cpp + kbinarybytecodec.cpp koctalbytecodec.cpp + kdecimalbytecodec.cpp + khexadecimalbytecodec.cpp +) + diff --git a/khexedit/lib/controller/CMakeLists.txt b/khexedit/lib/controller/CMakeLists.txt new file mode 100644 index 0000000..2ad71ba --- /dev/null +++ b/khexedit/lib/controller/CMakeLists.txt @@ -0,0 +1,33 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# 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} + ${CMAKE_SOURCE_DIR}/khexedit/lib + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### kcontroller (static) ###################### + +tde_add_library( kcontroller STATIC_PIC AUTOMOC + SOURCES kcontroller.cpp ktabcontroller.cpp + knavigator.cpp keditor.cpp kvalueeditor.cpp + kchareditor.cpp +) + diff --git a/khexedit/parts/CMakeLists.txt b/khexedit/parts/CMakeLists.txt new file mode 100644 index 0000000..40d4463 --- /dev/null +++ b/khexedit/parts/CMakeLists.txt @@ -0,0 +1,13 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( kbytesedit ) +add_subdirectory( kpart ) diff --git a/khexedit/parts/kbytesedit/CMakeLists.txt b/khexedit/parts/kbytesedit/CMakeLists.txt new file mode 100644 index 0000000..b6d70e0 --- /dev/null +++ b/khexedit/parts/kbytesedit/CMakeLists.txt @@ -0,0 +1,41 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# 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} + ${CMAKE_SOURCE_DIR}/khexedit/lib + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${CMAKE_BINARY_DIR}/khexedit/lib +) + + +##### kbyteseditwidget (kpart) ################## + +tde_add_kpart( kbyteseditwidget AUTOMOC + SOURCES kbyteseditwidget.cpp + DESTINATION ${PLUGIN_INSTALL_DIR} + LINK khexeditcommon-shared kparts-shared +) + + +##### other data ################################ + +install( FILES kbyteseditwidget.desktop + DESTINATION ${SERVICES_INSTALL_DIR} +) + diff --git a/khexedit/parts/kpart/CMakeLists.txt b/khexedit/parts/kpart/CMakeLists.txt new file mode 100644 index 0000000..c89e1bf --- /dev/null +++ b/khexedit/parts/kpart/CMakeLists.txt @@ -0,0 +1,46 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# 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} + ${CMAKE_SOURCE_DIR}/khexedit/lib + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${CMAKE_SOURCE_DIR}/khexedit/lib +) + + +##### khexedit2part (kpart) ##################### + +tde_add_kpart( khexedit2part AUTOMOC + SOURCES khepart.cpp khebrowserextension.cpp + khepartfactory.cpp + LINK khexeditcommon-shared kparts-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### other data ################################ + +install( FILES khexedit2part.desktop + DESTINATION ${SERVICES_INSTALL_DIR} +) + +install( FILES khexedit2partui.rc + DESTINATION ${DATA_INSTALL_DIR}/khexedit2part +) + diff --git a/khexedit/pics/CMakeLists.txt b/khexedit/pics/CMakeLists.txt new file mode 100644 index 0000000..b14d5d4 --- /dev/null +++ b/khexedit/pics/CMakeLists.txt @@ -0,0 +1,16 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES hexwrite.png hexdrag.png + hexmask.png + DESTINATION ${DATA_INSTALL_DIR}/khexedit/pics +) + |