Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / src_mobile / wrt-popup / ace / popup-bin / 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_DEP
23     dpl-efl
24     elementary
25     security-client
26     security-popup-validation
27    REQUIRED)
28
29 set(WRT_POPUP_SRC_DIR ${PROJECT_SOURCE_DIR}/src/wrt-popup/ace/popup-bin)
30
31 set(WRT_POPUP_SOURCES
32     ${WRT_POPUP_SRC_DIR}/Popup.cpp
33 )
34
35 ADD_DEFINITIONS(${WRT_POPUP_DEP_CFLAGS})
36
37 INCLUDE_DIRECTORIES(
38     ${WRT_POPUP_SRC_DIR}
39     ${WRT_POPUP_DEP_INCLUDE_DIRS}
40 )
41
42 ADD_EXECUTABLE(${TARGET_POPUP_ACE}
43     ${WRT_POPUP_SOURCES}
44 )
45
46 SET_TARGET_PROPERTIES(${TARGET_POPUP_ACE} PROPERTIES
47     COMPILE_FLAGS -fPIC
48 )
49
50 SET_TARGET_PROPERTIES(${TARGET_POPUP_ACE} PROPERTIES
51     #LINK_FLAGS "-Wl,--as-needed -Wl"
52     SOVERSION ${PROJECT_API_VERSION}
53     VERSION ${PROJECT_VERSION}
54 )
55
56 target_link_libraries(${TARGET_POPUP_ACE}
57     ${WRT_POPUP_DEP_LIBRARIES}
58     ${TARGET_POPUP_ACE_RUNNER_LIB}
59     ${WRT_POPUP_DEP_LDFLAGS}
60 )
61
62 INSTALL(TARGETS ${TARGET_POPUP_ACE}
63     DESTINATION bin
64 )