~mterry/+junk/u8.2

« back to all changes in this revision

Viewing changes to tests/mocks/Unity/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:
5
5
add_subdirectory(Notifications)
6
6
add_subdirectory(DashCommunicator)
7
7
 
8
 
pkg_search_module(DEE dee-1.0 REQUIRED)
9
8
pkg_search_module(GOBJECT gobject-2.0 REQUIRED)
10
 
pkg_search_module(DEEQT libdee-qt5 REQUIRED)
11
9
pkg_check_modules(SCOPES_API REQUIRED unity-shell-scopes=4)
12
10
 
13
11
include_directories(
14
12
  ${CMAKE_CURRENT_BINARY_DIR}
15
13
  ${Qt5Core_INCLUDE_DIRS}
16
14
  ${Qt5Quick_INCLUDE_DIRS}
17
 
  ${DEE_INCLUDE_DIRS}
18
 
  ${DEEQT_INCLUDE_DIRS}
 
15
  ${GOBJECT_INCLUDE_DIRS}
19
16
)
20
17
 
21
18
add_definitions(-DQT_NO_KEYWORDS)
47
44
target_link_libraries(FakeUnityQml
48
45
  ${Qt5Core_LIBRARIES}
49
46
  ${Qt5Quick_LIBRARIES}
50
 
  ${DEEQT_LDFLAGS}
51
47
  ${GOBJECT_LDFLAGS}
52
48
)
53
49