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

« back to all changes in this revision

Viewing changes to libmuonapt/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:
6
6
    HistoryView/HistoryView.cpp
7
7
)
8
8
 
9
 
kde4_add_library(muonapt SHARED ${muonapt_SRCS})
10
 
target_link_libraries(muonapt ${QT_QTCORE_LIBRARY}
11
 
    ${KDE4_KDECORE_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_SOLID_LIBS} ${KDE4_KIO_LIBS}
12
 
    ${QAPT_LIBRARY} muonprivate
 
9
find_package(KF5 REQUIRED KDELibs4Support)
 
10
 
 
11
add_library(MuonApt ${muonapt_SRCS})
 
12
target_link_libraries(MuonApt Qt5::Core
 
13
     KF5::Solid KF5::KIOWidgets KF5::XmlGui KF5::KDELibs4Support
 
14
     QApt::Main muonprivate
13
15
)
14
 
install(TARGETS muonapt ${INSTALL_TARGETS_DEFAULT_ARGS})
15
 
 
16
 
add_subdirectory(declarative)
 
 
b'\\ No newline at end of file'
 
16
message(STATUS "lalala ${CMAKE_CURRENT_SOURCE_DIR}")
 
17
target_include_directories(MuonApt PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
 
18
 
 
19
add_executable(muon_repo_helper AddRepositoryHelper.cpp)
 
20
target_link_libraries(muon_repo_helper Qt5::Core KF5::Auth)
 
21
 
 
22
install(TARGETS muon_repo_helper DESTINATION ${LIBEXEC_INSTALL_DIR})
 
23
kauth_install_actions(org.kde.muon.repo policies/org.kde.muon.repo.action)
 
24
kauth_install_helper_files(muon_repo_helper org.kde.muon.repo root)
 
25
 
 
26
install(TARGETS MuonApt ${INSTALL_TARGETS_DEFAULT_ARGS})