mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
28 lines
513 B
CMake
28 lines
513 B
CMake
project(kcert)
|
|
|
|
include_directories(
|
|
${OPENSSL_INCLUDE_DIR}
|
|
${KDE4_KPARTS_INCLUDES}
|
|
${CMAKE_BINARY_DIR}/kio/kssl
|
|
${CMAKE_SOURCE_DIR}/kio/kssl
|
|
${KDE4_KIO_INCLUDES}
|
|
)
|
|
|
|
kde4_add_plugin(kcertpart kcertpart.cc)
|
|
|
|
target_link_libraries(kcertpart ${KDE4_KPARTS_LIBS})
|
|
|
|
install(
|
|
TARGETS kcertpart
|
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
FILES kcertpart.desktop
|
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
FILES kcertpart.rc
|
|
DESTINATION ${DATA_INSTALL_DIR}/kcertpart
|
|
)
|