mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
17 lines
613 B
CMake
17 lines
613 B
CMake
project(kcert)
|
|
|
|
include_directories( ${OPENSSL_INCLUDE_DIR} )
|
|
include_directories( ${KDE4_KPARTS_INCLUDES} )
|
|
include_directories( ${CMAKE_BINARY_DIR}/kio/kssl )
|
|
include_directories( ${CMAKE_SOURCE_DIR}/kio/kssl )
|
|
include_directories( ${KDE4_KIO_INCLUDES} )
|
|
|
|
set(kcertpart_PART_SRCS kcertpart.cc )
|
|
|
|
kde4_add_plugin(kcertpart ${kcertpart_PART_SRCS})
|
|
|
|
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 )
|