~alan-griffiths/miral/fix-1645284

« back to all changes in this revision

Viewing changes to miral-qt/tests/mirserver/Screen/CMakeLists.txt

  • Committer: Alan Griffiths
  • Date: 2016-11-07 17:59:19 UTC
  • mfrom: (436.1.1 miral2)
  • Revision ID: alan@octopull.co.uk-20161107175919-stbb64i7j1htgog2
[miral-qt] delete all as qtmir work on MirAL has shifted to lp:~unity-team/qtmir/miral-qt-integration and this is a needless distration

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
set(
2
 
  SCREEN_TEST_SOURCES
3
 
  screen_test.cpp
4
 
  ${MIRAL_QT_SOURCE_DIR}/src/common/debughelpers.cpp
5
 
)
6
 
 
7
 
include_directories(
8
 
  ${MIRAL_QT_SOURCE_DIR}/tests/framework
9
 
  ${MIRAL_QT_SOURCE_DIR}/src/platforms/mirserver
10
 
  ${MIRAL_QT_SOURCE_DIR}/src/common
11
 
)
12
 
 
13
 
include_directories(
14
 
  SYSTEM
15
 
  ${Qt5Gui_PRIVATE_INCLUDE_DIRS}
16
 
  ${MIRSERVER_INCLUDE_DIRS}
17
 
)
18
 
 
19
 
add_executable(ScreenTest ${SCREEN_TEST_SOURCES})
20
 
 
21
 
target_link_libraries(
22
 
  ScreenTest
23
 
  qpa-mirserver
24
 
 
25
 
  ${GTEST_BOTH_LIBRARIES}
26
 
  ${GMOCK_LIBRARIES}
27
 
)
28
 
 
29
 
add_test(Screen, ScreenTest)