You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
605 B
21 lines
605 B
include_directories( |
|
${CMAKE_CURRENT_SOURCE_DIR}/../.. |
|
${CMAKE_BINARY_DIR}/okular |
|
) |
|
|
|
########### next target ############### |
|
|
|
set(okularGenerator_txt_SRCS |
|
generator_txt.cpp |
|
converter.cpp |
|
document.cpp |
|
) |
|
|
|
|
|
okular_add_generator(okularGenerator_txt ${okularGenerator_txt_SRCS}) |
|
|
|
target_link_libraries(okularGenerator_txt okularcore Qt5::Core KF5::I18n) |
|
|
|
########### install files ############### |
|
install( FILES okularTxt.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR} ) |
|
install( PROGRAMS okularApplication_txt.desktop org.kde.mobile.okular_txt.desktop DESTINATION ${KDE_INSTALL_APPDIR} )
|
|
|