~ubuntu-branches/ubuntu/saucy/plasma-nm/saucy-proposed

« back to all changes in this revision

Viewing changes to editor/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-08-16 19:07:09 UTC
  • Revision ID: package-import@ubuntu.com-20130816190709-ef9ydm9skigmg15l
Tags: upstream-0.0~git20130816
ImportĀ upstreamĀ versionĀ 0.0~git20130816

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include_directories(${CMAKE_SOURCE_DIR}/lib/editor)
 
2
 
 
3
set(connectioneditor_SRCS
 
4
   main.cpp
 
5
   connectioneditor.cpp
 
6
   connectionitem.cpp
 
7
   connectiontypeitem.cpp
 
8
)
 
9
 
 
10
kde4_add_app_icon(connectioneditor_SRCS "${KDE4_INSTALL_DIR}/share/icons/oxygen/*/devices/network-defaultroute.png" )
 
11
 
 
12
kde4_add_ui_files(connectioneditor_SRCS
 
13
    ui/connectioneditor.ui
 
14
)
 
15
 
 
16
kde4_add_executable(kde-nm-connection-editor ${connectioneditor_SRCS})
 
17
 
 
18
target_link_libraries(kde-nm-connection-editor plasmanm-internal plasmanm-editor NetworkManagerQt ${QT_QTCORE_LIBRARY} ${QT_QTDBUS_LIBRARY} ${QT_QTNETWORK_LIBRARY} ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS})
 
19
 
 
20
install(TARGETS kde-nm-connection-editor DESTINATION ${INSTALL_TARGETS_DEFAULT_ARGS})
 
21
install(PROGRAMS kde-nm-connection-editor.desktop DESTINATION ${XDG_APPS_INSTALL_DIR})
 
22
install(FILES kde-nm-connection-editorui.rc  DESTINATION ${DATA_INSTALL_DIR}/kde-nm-connection-editor)