Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / src_wearable / wrt-popup / ace / popup-runner / 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 #
16 # @file     CMakeLists.txt
17 # @author   Janusz Kozerski (j.kozerski@samsung.com)
18 #
19 # @version  1.0
20 #
21
22 PKG_CHECK_MODULES(WRT_POPUP_RUNNER_LIB_DEP
23     dpl-efl
24     elementary
25     security-client
26    REQUIRED)
27
28 set(WRT_POPUP_RUNNER_LIB_SRC_DIR ${PROJECT_SOURCE_DIR}/src/wrt-popup/ace/popup-runner)
29
30 set(WRT_POPUP_RUNNER_LIB_SOURCES
31     ${WRT_POPUP_RUNNER_LIB_SRC_DIR}/popup-runner.cpp
32 )
33
34 ADD_DEFINITIONS(${WRT_POPUP_RUNNER_LIB_DEP_CFLAGS})
35
36 INCLUDE_DIRECTORIES(
37     ${WRT_POPUP_RUNNER_LIB_SRC_DIR}
38     ${WRT_POPUP_RUNNER_LIB_DEP_INCLUDE_DIRS}
39 )
40
41 ADD_LIBRARY(${TARGET_POPUP_ACE_RUNNER_LIB} SHARED
42     ${WRT_POPUP_RUNNER_LIB_SOURCES}
43 )
44
45 SET_TARGET_PROPERTIES(${TARGET_POPUP_ACE_RUNNER_LIB} PROPERTIES
46     COMPILE_FLAGS -fPIC
47 )
48
49 SET_TARGET_PROPERTIES(${TARGET_POPUP_ACE_RUNNER_LIB} PROPERTIES
50     SOVERSION ${CMAKE_PROJECT_API_VERSION}
51     VERSION ${CMAKE_PROJECT_VERSION}
52 )
53
54 target_link_libraries(${TARGET_POPUP_ACE_RUNNER_LIB}
55     ${WRT_POPUP_RUNNER_LIB_DEP_LIBRARIES}
56     ${WRT_POPUP_RUNNER_LIB_DEP_LDFLAGS}
57 )
58
59 INSTALL(TARGETS ${TARGET_POPUP_ACE_RUNNER_LIB}
60     DESTINATION lib
61 )
62
63 INSTALL(FILES ${WRT_POPUP_RUNNER_LIB_SRC_DIR}/popup-runner.h
64     DESTINATION ${DESTINATION_HEADERS_WRT_POPUP_RUNNER}
65 )