Add conditional statements for krate not supported
[platform/core/security/dpm-zone.git] / plugin / 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 SET(TARGET "dpm-plugin-zone")
17
18 SET(PLUGIN_SOURCES "zone.cpp")
19
20 SET(DEPENDENCY      klay
21                                         dpm-pil
22 )
23
24 IF(NOT KRATE_SUPPORTED)
25         SET(DEPENDENCY ${DEPENDENCY} krate)
26 ENDIF(NOT KRATE_SUPPORTED)
27
28 PKG_CHECK_MODULES(PLUGIN_DEPS REQUIRED ${DEPENDENCY})
29
30 SET (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,noexecstack")
31
32 ADD_LIBRARY(${TARGET} SHARED ${PLUGIN_SOURCES})
33 SET_TARGET_PROPERTIES(${TARGET} PROPERTIES COMPILE_FLAGS "-fvisibility=default")
34 INCLUDE_DIRECTORIES(SYSTEM ${PLUGIN_DEPS_INCLUDE_DIRS})
35 TARGET_LINK_LIBRARIES(${TARGET} ${PLUGIN_DEPS_LIBRARIES})
36
37 INSTALL(FILES libdpm-plugin-zone.so RENAME zone DESTINATION ${PLUGIN_INSTALL_DIR})