~mterry/+junk/u8.2

« back to all changes in this revision

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

  • Committer: Michael Terry
  • Date: 2014-11-17 14:56:04 UTC
  • mfrom: (1317.1.118 unity8)
  • Revision ID: michael.terry@canonical.com-20141117145604-96dn9p5nwkifq2f4
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
include(FindPkgConfig)
2
 
pkg_check_modules(LAUNCHER_API REQUIRED unity-shell-launcher=4)
 
2
pkg_check_modules(LAUNCHER_API REQUIRED unity-shell-launcher=5)
3
3
pkg_check_modules(APPLICATION_API REQUIRED unity-shell-application=5)
4
4
pkg_check_modules(GSETTINGS_QT REQUIRED gsettings-qt)
5
5
 
9
9
    ${CMAKE_CURRENT_SOURCE_DIR}
10
10
    ${CMAKE_SOURCE_DIR}/plugins/AccountsService
11
11
    ${GSETTINGS_QT_INCLUDE_DIRS}
 
12
    ${libunity8-private_SOURCE_DIR}
12
13
)
13
14
 
14
15
set(QMLLAUNCHERPLUGIN_SRC
30
31
    ${QMLLAUNCHERPLUGIN_SRC}
31
32
    )
32
33
 
33
 
target_link_libraries(UnityLauncher-qml ${GSETTINGS_QT_LDFLAGS})
 
34
target_link_libraries(UnityLauncher-qml
 
35
    unity8-private
 
36
    ${GSETTINGS_QT_LDFLAGS}
 
37
    )
34
38
 
35
39
qt5_use_modules(UnityLauncher-qml DBus Qml Gui)
36
40