mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
16 lines
410 B
CMake
16 lines
410 B
CMake
if(ENABLE_TESTING)
|
|
add_subdirectory(tests)
|
|
endif()
|
|
|
|
########### kio_archive ###############
|
|
|
|
set(kio_archive_SRCS kio_archive.cpp )
|
|
|
|
kde4_add_plugin(kio_archive ${kio_archive_SRCS})
|
|
|
|
target_link_libraries(kio_archive ${KDE4_KIO_LIBS} )
|
|
|
|
install(TARGETS kio_archive DESTINATION ${KDE4_PLUGIN_INSTALL_DIR} )
|
|
install( FILES tar.protocol ar.protocol zip.protocol DESTINATION ${KDE4_SERVICES_INSTALL_DIR} )
|
|
|
|
|