~ubuntu-branches/ubuntu/vivid/muon/vivid-proposed

« back to all changes in this revision

Viewing changes to libmuon/declarative/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell, Harald Sitter, Jonathan Riddell
  • Date: 2015-01-15 01:33:55 UTC
  • mfrom: (1.4.31)
  • mto: This revision was merged to the branch mainline in revision 81.
  • Revision ID: package-import@ubuntu.com-20150115013355-3h99wieurdvo6z6q
Tags: 4:5.1.95-0ubuntu1
[ Harald Sitter ]
* New upstream release based on KDE Frameworks 5
* muon-installer is no more remove binary package and all references
* Drop all patches, they all came from upstream anyway
* Remove muon.1 it was wrong and is now outdated
* Fix lintian warnings and ignore all that are bogus or not worth
  fixing

[ Jonathan Riddell ]
* New upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
include_directories( ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ..)
4
4
 
5
 
kde4_add_library(muondeclarativeplugin SHARED MuonDeclarativePlugin.cpp ApplicationProxyModelHelper.cpp)
6
 
 
7
 
target_link_libraries(muondeclarativeplugin ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QTDECLARATIVE_LIBRARY} muonprivate)
8
 
 
9
 
install(TARGETS muondeclarativeplugin DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/muon)
10
 
install(FILES qmldir DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/muon)
 
5
add_library(muondeclarativeplugin MuonDeclarativePlugin.cpp ApplicationProxyModelHelper.cpp)
 
6
 
 
7
target_link_libraries(muondeclarativeplugin Qt5::Core Qt5::Qml muonprivate)
 
8
 
 
9
install(TARGETS muondeclarativeplugin DESTINATION ${QML_INSTALL_DIR}/org/kde/muon)
 
10
install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kde/muon)