~afrantzis/unity-system-compositor/notification-timeouts

« back to all changes in this revision

Viewing changes to tests/integration-tests/CMakeLists.txt

  • Committer: Tarmac
  • Author(s): Alexandros Frantzis
  • Date: 2015-04-09 12:30:27 UTC
  • mfrom: (203.2.3 spinner-process-no-qt)
  • Revision ID: tarmac-20150409123027-asnzo3olka7rti6a
Reimplement ExternalSpinner without Qt.

Approved by PS Jenkins bot, Alan Griffiths.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
)
23
23
 
24
24
add_executable(
 
25
  usc_test_helper_wait_for_signal
 
26
  usc_test_helper_wait_for_signal.c
 
27
)
 
28
 
 
29
add_executable(
25
30
  usc_integration_tests
26
31
 
 
32
  run_command.cpp
27
33
  dbus_bus.cpp
28
34
  dbus_client.cpp
29
35
  test_dbus_event_loop.cpp
30
36
  test_unity_screen_service.cpp
 
37
  test_external_spinner.cpp
31
38
)
32
39
 
33
40
target_link_libraries(
42
49
add_test(usc_integration_tests ${EXECUTABLE_OUTPUT_PATH}/usc_integration_tests)
43
50
 
44
51
add_dependencies(usc_integration_tests GMock)
 
52
add_dependencies(usc_integration_tests usc_test_helper_wait_for_signal)