mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
35 lines
876 B
CMake
35 lines
876 B
CMake
include_directories(
|
|
${CMAKE_SOURCE_DIR}
|
|
${KDE4_KDECORE_INCLUDES}
|
|
${KDE4_KDEUI_INCLUDES}
|
|
${KDE4_KIO_INCLUDES}
|
|
${CMAKE_SOURCE_DIR}/kfile
|
|
)
|
|
|
|
if(QT_QTDESIGNER_FOUND)
|
|
############################################
|
|
# the forms module
|
|
|
|
kde4_add_plugin(krossmoduleforms form.cpp)
|
|
|
|
target_link_libraries(krossmoduleforms
|
|
${QT_QTUITOOLS_LIBRARY}
|
|
${KDE4_KPARTS_LIBS}
|
|
${KDE4_KFILE_LIBS}
|
|
krosscore
|
|
krossui
|
|
)
|
|
install(TARGETS krossmoduleforms DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
endif()
|
|
|
|
############################################
|
|
# the kdetranslation module
|
|
|
|
kde4_add_plugin(krossmodulekdetranslation translation.cpp)
|
|
|
|
target_link_libraries(krossmodulekdetranslation
|
|
${KDE4_KPARTS_LIBS}
|
|
${KDE4_CORE_LIBS}
|
|
krosscore
|
|
)
|
|
install(TARGETS krossmodulekdetranslation DESTINATION ${PLUGIN_INSTALL_DIR})
|