plasma-framework/declarativeimports/locale/CMakeLists.txt

27 lines
679 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
2012-02-01 10:44:11 +01:00
calendarsystem.cpp
)
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})
#FIXME
#Should i put something?
2012-03-07 03:36:08 +01:00
target_link_libraries(localebindingsplugin ${QT_QTDECLARATIVE_LIBRARY} ${KDE4_KDECORE_LIBRARY} ${KDE4_KDECORE_INCLUDES})
install(TARGETS localebindingsplugin DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/plasma/locale)
install(FILES qmldir DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/plasma/locale)