~andreas-pokorny/mir/activate-pointer-acceleration

« back to all changes in this revision

Viewing changes to benchmarks/CMakeLists.txt

  • Committer: Tarmac
  • Author(s): Christopher James Halse Rogers, Christopher James Halse Rogers
  • Date: 2015-02-18 04:25:26 UTC
  • mfrom: (2239.7.33 add-multiplexing-dispatchable)
  • Revision ID: tarmac-20150218042526-j1ei9ni2k4tua4e9
Add MultiplexingDispatchable.

This does exactly what it says; multiplexes multiple Dispatchables into a single Dispatchable. Each dispatch() of the MultiplexingDispatchable dispatches to a child Dispatchable with active events.

Approved by Alexandros Frantzis, PS Jenkins bot, Robert Carr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
  add_subdirectory(frame-uniformity)
11
11
  add_dependencies(benchmarks frame_uniformity_test_client)
12
12
endif ()
 
13
 
 
14
add_executable(benchmark_multiplexing_dispatchable
 
15
  benchmark_multiplexing_dispatchable.cpp
 
16
)
 
17
 
 
18
target_link_libraries(benchmark_multiplexing_dispatchable
 
19
  mircommon
 
20
)