diff options
author | gregory guy <g-gregory@gmx.fr> | 2019-05-01 14:48:25 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-05-12 16:30:25 +0200 |
commit | db17d12f24fab5ed233b222c90000e3c0081f99d (patch) | |
tree | 8a67c231c7f3df939bbebd42f5c9c932a6747dd1 /src | |
parent | 45746889b14682c45c1d1ee41668c073acd39280 (diff) | |
download | kchmviewer-db17d12f24fab5ed233b222c90000e3c0081f99d.tar.gz kchmviewer-db17d12f24fab5ed233b222c90000e3c0081f99d.zip |
conversion to the cmake building system
Signed-off-by: gregory guy <g-gregory@gmx.fr>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 77 | ||||
-rw-r--r-- | src/kchmsearchengine_impl.cpp | 1 | ||||
-rw-r--r-- | src/pics/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/tde/CMakeLists.txt | 27 |
4 files changed, 106 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..39704dd --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,77 @@ +add_subdirectory( pics ) +tde_conditional_add_subdirectory( WITH_TDE tde ) + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} + ${CHMLIB_INCLUDE_DIRS} + ${CMAKE_SOURCE_DIR}/lib/libchmfile + ${CMAKE_SOURCE_DIR}/src +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### kchmviewer (executable) + +if( WITH_TDE ) + set( BASE_LIBRARIES + tdecore-shared + tdeui-shared + tdeio-shared + tdehtml-shared + tdeparts-shared + ) + set( TDEEXTRA_LIBRARIES kdeextra-static ) +else( ) + set( BASE_LIBRARIES ${TQT_LIBRARIES} ) + set( TDEEXTRA_LIBRARIES "" ) +endif( ) + +tde_add_executable( ${PROJECT_NAME} AUTOMOC + + SOURCES + kchmsetupdialog.ui + iconstorage.cpp + kchmbookmarkwindow.cpp + kchmconfig.cpp + kchmindexwindow.cpp + kchmmainwindow.cpp + kchmsearchtoolbar.cpp + kchmsearchwindow.cpp + kchmsettings.cpp + kchmsourcefactory.cpp + kchmtreeviewitem.cpp + kchmviewwindow.cpp + main.cpp + kchmdialogchooseurlfromlist.cpp + tde-tqt.cpp + kchmviewwindow_qtextbrowser.cpp + kqtempfile.cpp + kchmnavtoolbar.cpp + kchmviewwindowmgr.cpp + kchmkeyeventfilter.cpp + kchmcontentswindow.cpp + kchmsearchengine_impl.cpp + kchmsearchengine.cpp + kchmsetupdialog_impl.cpp + LINK + ${BASE_LIBRARIES} + ${TDEEXTRA_LIBRARIES} + chmfile-static + ${CHMLIB_LIBRARIES} + + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### icons + +tde_install_icons( ) + diff --git a/src/kchmsearchengine_impl.cpp b/src/kchmsearchengine_impl.cpp index 89db7e7..b57e029 100644 --- a/src/kchmsearchengine_impl.cpp +++ b/src/kchmsearchengine_impl.cpp @@ -570,3 +570,4 @@ bool Index::searchForPhrases( const TQStringList &phrases, const TQStringList &w }; +#include "kchmsearchengine_impl.moc" diff --git a/src/pics/CMakeLists.txt b/src/pics/CMakeLists.txt new file mode 100644 index 0000000..63f765b --- /dev/null +++ b/src/pics/CMakeLists.txt @@ -0,0 +1 @@ +tde_install_icons( ) diff --git a/src/tde/CMakeLists.txt b/src/tde/CMakeLists.txt new file mode 100644 index 0000000..9370944 --- /dev/null +++ b/src/tde/CMakeLists.txt @@ -0,0 +1,27 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} + ${CMAKE_SOURCE_DIR}/src + ${CMAKE_SOURCE_DIR}/lib/libchmfile +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### kdeextra (static) + +tde_add_library( kdeextra STATIC_PIC AUTOMOC + + SOURCES + kchmdcopiface.skel + kchmdcopiface.cpp + kchmviewwindow_tdehtmlpart.cpp + + DESTINATION ${LIB_INSTALL_DIR} +) |