plasma-framework/declarativeimports/locale/CMakeLists.txt
2012-02-01 11:44:11 +02:00

24 lines
573 B
CMake

project(localebindings)
set(localebindings_SRCS
locale.cpp
calendarsystem.cpp
)
INCLUDE_DIRECTORIES(
${CMAKE_SOURCE_DIR}
${CMAKE_BINARY_DIR}
${KDE4_INCLUDES}
)
qt4_automoc(${localebindings_SRCS})
add_library(localebindingsplugin SHARED ${localebindings_SRCS})
#FIXME
#Should i put something?
target_link_libraries(localebindingsplugin ${QT_QTDECLARATIVE_LIBRARY})
install(TARGETS localebindingsplugin DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/plasma/locale)
install(FILES qmldir DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/plasma/locale)