plasma-framework/declarativeimports/locale/CMakeLists.txt

26 lines
626 B
CMake
Raw Normal View History

project(localebindings)
2012-02-14 02:03:51 +01:00
include(KDE4Defaults)
set(localebindings_SRCS
locale.cpp
localebindingsplugin.cpp
calendarsystem.cpp
2012-02-01 10:44:11 +01:00
)
INCLUDE_DIRECTORIES(
${CMAKE_SOURCE_DIR}
${CMAKE_BINARY_DIR}
${KDE4_INCLUDES}
)
qt4_automoc(${localebindings_SRCS})
2012-02-14 02:03:51 +01:00
kde4_add_library(localebindingsplugin SHARED ${localebindings_SRCS})
target_link_libraries(localebindingsplugin ${QT_QTDECLARATIVE_LIBRARY} ${KDE4_KDECORE_LIBRARY})
install(TARGETS localebindingsplugin DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/plasma/locale)
install(FILES qmldir DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/plasma/locale)