~mterry/unity8/greeter-misc-cleanups

« back to all changes in this revision

Viewing changes to plugins/Unity/DashCommunicator/CMakeLists.txt

  • Committer: Michael Terry
  • Date: 2014-08-07 15:30:54 UTC
  • mfrom: (1086.1.48 unity8)
  • Revision ID: michael.terry@canonical.com-20140807153054-nqahwmptl0dw9bum
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include_directories(
 
2
    ${CMAKE_CURRENT_SOURCE_DIR}
 
3
)
 
4
 
 
5
set(QMLDASHCOMMUNICATORPLUGIN_SRC
 
6
    plugin.cpp
 
7
    dbusdashcommunicatorservice.cpp
 
8
    dashcommunicatorservice.cpp
 
9
    dashcommunicator.cpp
 
10
    )
 
11
 
 
12
add_library(DashCommunicator-qml MODULE
 
13
    ${QMLDASHCOMMUNICATORPLUGIN_SRC}
 
14
    )
 
15
 
 
16
qt5_use_modules(DashCommunicator-qml DBus Qml)
 
17
 
 
18
# export the qmldir and qmltypes files
 
19
add_unity8_plugin(Unity.DashCommunicator 0.1 Unity/DashCommunicator TARGETS DashCommunicator-qml)