Fix invalid licenses
[platform/framework/web/crosswalk-tizen.git] / src / extension / CMakeLists.txt
1 #
2 # Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
3 #
4 #    Licensed under the Apache License, Version 2.0 (the "License");
5 #    you may not use this file except in compliance with the License.
6 #    You may obtain a copy of the License at
7 #
8 #        http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #    Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #    See the License for the specific language governing permissions and
14 #    limitations under the License.
15 #
16 PKG_CHECK_MODULES(TARGET_EXTENSION_STATIC_DEPS
17   dlog
18   glib-2.0
19   REQUIRED
20 )
21
22 SET(TARGET_EXTENSION_STATIC_INCS
23   ${BASE_SRCDIR}
24   ${TARGET_EXTENSION_STATIC_DEPS_INCLUDE_DIRS}
25 )
26
27 SET(TARGET_EXTENSION_STATIC_SRCS
28   ${BASE_SRCDIR}/extension/extension.cc
29   ${BASE_SRCDIR}/extension/extension_instance.cc
30   ${BASE_SRCDIR}/extension/extension_adapter.cc
31   ${BASE_SRCDIR}/extension/extension_server.cc
32 )
33
34 INCLUDE_DIRECTORIES(${TARGET_EXTENSION_STATIC_INCS})
35 ADD_LIBRARY(${TARGET_EXTENSION_STATIC} STATIC
36   ${TARGET_EXTENSION_STATIC_SRCS}
37 )
38 SET_TARGET_PROPERTIES(${TARGET_EXTENSION_STATIC} PROPERTIES
39     COMPILE_FLAGS -fPIC)
40 TARGET_LINK_LIBRARIES(${TARGET_EXTENSION_STATIC}
41   ${TARGET_EXTENSION_STATIC_DEPS_LIBRARIES}
42   ${TARGET_COMMON_STATIC}
43 )
44
45 ADD_SUBDIRECTORY(widget)