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.
23 lines
535 B
23 lines
535 B
include_directories( |
|
${CMAKE_CURRENT_SOURCE_DIR}/../../.. |
|
${CMAKE_CURRENT_SOURCE_DIR}/../lib |
|
${CHM_INCLUDE_DIR} |
|
) |
|
|
|
|
|
########### next target ############### |
|
|
|
set(kio_msits_PART_SRCS msits.cpp kio_mits_debug.cpp) |
|
|
|
|
|
add_library(kio_msits MODULE ${kio_msits_PART_SRCS}) |
|
|
|
target_link_libraries(kio_msits KF5::KIOCore Qt5::Core ${CHM_LIBRARY} ) |
|
|
|
install(TARGETS kio_msits DESTINATION ${KDE_INSTALL_PLUGINDIR} ) |
|
|
|
|
|
########### install files ############### |
|
|
|
install( FILES msits.protocol DESTINATION ${KDE_INSTALL_KSERVICES5DIR} ) |
|
|
|
|