7bbc84b34c9c571d9938dc7e4ec48e0437f71a60
[framework/web/wrt-commons.git] / modules / event / config.cmake
1 # Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
2 #
3 #    Licensed under the Apache License, Version 2.0 (the "License");
4 #    you may not use this file except in compliance with the License.
5 #    You may obtain a copy of the License at
6 #
7 #        http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #    Unless required by applicable law or agreed to in writing, software
10 #    distributed under the License is distributed on an "AS IS" BASIS,
11 #    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #    See the License for the specific language governing permissions and
13 #    limitations under the License.
14 #
15 #
16 # @file        config.cmake
17 # @author      Lukasz Marek (l.marek@samsung.com)
18 # @version     1.0
19 # @brief
20 #
21
22 SET(DPL_EVENT_SOURCES
23     ${PROJECT_SOURCE_DIR}/modules/event/src/abstract_event_call.cpp
24     ${PROJECT_SOURCE_DIR}/modules/event/src/abstract_event_dispatcher.cpp
25     ${PROJECT_SOURCE_DIR}/modules/event/src/controller.cpp
26     ${PROJECT_SOURCE_DIR}/modules/event/src/event_listener.cpp
27     ${PROJECT_SOURCE_DIR}/modules/event/src/event_support.cpp
28     ${PROJECT_SOURCE_DIR}/modules/event/src/generic_event_call.cpp
29     ${PROJECT_SOURCE_DIR}/modules/event/src/main_event_dispatcher.cpp
30     ${PROJECT_SOURCE_DIR}/modules/event/src/thread_event_dispatcher.cpp
31     ${PROJECT_SOURCE_DIR}/modules/event/src/inter_context_delegate.cpp
32     ${PROJECT_SOURCE_DIR}/modules/event/src/nested_loop.cpp
33     ${PROJECT_SOURCE_DIR}/modules/event/src/model.cpp
34     PARENT_SCOPE
35 )
36
37 SET(DPL_EVENT_HEADERS
38     ${PROJECT_SOURCE_DIR}/modules/event/include/dpl/event/abstract_event_call.h
39     ${PROJECT_SOURCE_DIR}/modules/event/include/dpl/event/abstract_event_dispatcher.h
40     ${PROJECT_SOURCE_DIR}/modules/event/include/dpl/event/controller.h
41     ${PROJECT_SOURCE_DIR}/modules/event/include/dpl/event/event_listener.h
42     ${PROJECT_SOURCE_DIR}/modules/event/include/dpl/event/event_support.h
43     ${PROJECT_SOURCE_DIR}/modules/event/include/dpl/event/generic_event_call.h
44     ${PROJECT_SOURCE_DIR}/modules/event/include/dpl/event/main_event_dispatcher.h
45     ${PROJECT_SOURCE_DIR}/modules/event/include/dpl/event/thread_event_dispatcher.h
46     ${PROJECT_SOURCE_DIR}/modules/event/include/dpl/event/nested_loop.h
47     ${PROJECT_SOURCE_DIR}/modules/event/include/dpl/event/inter_context_delegate.h
48     ${PROJECT_SOURCE_DIR}/modules/event/include/dpl/event/model.h
49     ${PROJECT_SOURCE_DIR}/modules/event/include/dpl/event/property.h
50     ${PROJECT_SOURCE_DIR}/modules/event/include/dpl/event/model_bind_to_dao.h
51     PARENT_SCOPE
52 )
53
54 SET(DPL_EVENT_INCLUDE_DIR
55     ${PROJECT_SOURCE_DIR}/modules/event/include/
56     PARENT_SCOPE
57 )