~robertcarr/mir/send-clients-input

« back to all changes in this revision

Viewing changes to src/input/android/CMakeLists.txt

  • Committer: Kevin DuBois
  • Date: 2012-11-13 01:36:29 UTC
  • mfrom: (245 trunk)
  • mto: This revision was merged to the branch mainline in revision 246.
  • Revision ID: kevin.dubois@canonical.com-20121113013629-q4496w4mp5e33auk
merge in base branch. move the demo clients to a new directory, examples/

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright © 2012 Canonical Ltd.
 
2
#
 
3
# This program is free software: you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License version 3 as
 
5
# published by the Free Software Foundation.
 
6
#
 
7
# This program is distributed in the hope that it will be useful,
 
8
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
# GNU General Public License for more details.
 
11
#
 
12
# You should have received a copy of the GNU General Public License
 
13
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
14
#
 
15
# Authored by: Thomas Voss <thomas.voss@canonical.com>
 
16
 
 
17
list(
 
18
  APPEND INPUT_SOURCES
 
19
  ${CMAKE_CURRENT_SOURCE_DIR}/android_input_manager.cpp
 
20
  ${CMAKE_CURRENT_SOURCE_DIR}/event_filter_dispatcher_policy.cpp
 
21
)
 
22
 
 
23
set(
 
24
  INPUT_SOURCES
 
25
  ${INPUT_SOURCES}
 
26
  PARENT_SCOPE
 
27
)
 
28