Tizen 2.0 Release
[framework/web/wrt-commons.git] / build / event / CMakeLists.txt
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 # @file        CMakeLists.txt
16 # @author      Lukasz Marek (l.marek@samsung.com)
17 # @version     1.0
18 # @brief
19 #
20
21 # Check required modules
22 INCLUDE(FindPkgConfig)
23 PKG_CHECK_MODULES(SYS_EFL_EVENT
24     ecore
25     appcore-efl
26     vconf
27     REQUIRED
28 )
29
30 # Add core include directories
31 INCLUDE_DIRECTORIES(
32     ${DPL_LOG_INCLUDE_DIR}
33     ${DPL_CORE_INCLUDE_DIR}
34     ${DPL_EVENT_INCLUDE_DIR}
35     ${DPL_EVENT_INCLUDE_DIR}
36 )
37
38 INCLUDE_DIRECTORIES(SYSTEM ${SYS_EFL_EVENT_INCLUDE_DIRS})
39
40 LINK_DIRECTORIES(
41     ${SYS_EFL_EVENT_LIBRARY_DIRS}
42 )
43
44 # Base EFL based DPL library
45 SET(DPL_EFL_EVENT_LIBRARY "${PROJECT_NAME}-event-efl")
46
47 # Build shared library
48
49 ADD_LIBRARY(${TARGET_DPL_EVENT_EFL} SHARED  ${DPL_EVENT_SOURCES})
50
51 TARGET_LINK_LIBRARIES(${TARGET_DPL_EVENT_EFL}
52     ${SYS_EFL_EVENT_LIBRARIES}
53     ${TARGET_DPL_EFL}
54 )
55
56 # Target library properties
57 SET_TARGET_PROPERTIES(${TARGET_DPL_EVENT_EFL} PROPERTIES
58     SOVERSION ${API_VERSION} 
59  VERSION ${VERSION}
60     CLEAN_DIRECT_OUTPUT 1
61     OUTPUT_NAME ${DPL_EFL_EVENT_LIBRARY})
62
63 # Install libraries
64 INSTALL(TARGETS ${TARGET_DPL_EVENT_EFL}
65         DESTINATION lib)
66
67 # Install detail headers
68 INSTALL(FILES ${DPL_EVENT_HEADERS}
69         DESTINATION include/dpl-efl/dpl/event)
70
71 # Install pkgconfig script
72 configure_and_install_pkg(dpl-event-efl.pc)