~mir-team/qtmir/mir-0.16-rebuild

« back to all changes in this revision

Viewing changes to tests/modules/TaskController/CMakeLists.txt

  • Committer: CI bot
  • Author(s): Gerry Boland, Robert Carr, Michał Sawicz
  • Date: 2014-12-03 10:06:40 UTC
  • mfrom: (250.4.74 origin/cmake)
  • Revision ID: ps-jenkins@lists.canonical.com-20141203100640-wlk4i71g0cwl3r5r
Port qmake->cmake to enable sbuild usage for crosscompiling. 
Approved by: Gerry Boland

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
find_package(Qt5Gui)
2
 
 
3
1
set(
4
2
  TASK_CONTROLLER_TEST_SOURCES
5
3
  taskcontroller_test.cpp
7
5
)
8
6
 
9
7
include_directories(
10
 
  ${CMAKE_SOURCE_DIR}/src/platforms/mirserver
11
 
  ${CMAKE_SOURCE_DIR}/src/common
12
8
  ${CMAKE_SOURCE_DIR}/src/modules
13
9
  ${CMAKE_SOURCE_DIR}/tests/modules/common
14
 
  ${Qt5Gui_PRIVATE_INCLUDE_DIRS}
15
10
  ${MIRSERVER_INCLUDE_DIRS}
16
11
)
17
12
 
24
19
  unityapplicationplugin
25
20
 
26
21
  ${GTEST_BOTH_LIBRARIES}
27
 
  ${GMOCK_BOTH_LIBRARIES}
28
 
)
 
 
b'\\ No newline at end of file'
 
22
  ${GMOCK_LIBRARIES}
 
23
)
 
24
 
 
25
add_test(TaskController, taskcontroller_test)