Add security policy
[platform/core/security/dpm-security.git] / api / 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 ${PROJECT_NAME})
17 SET(PC_FILE "${TARGET}.pc")
18
19 SET(LIB_VERSION "${VERSION}")
20 SET(LIB_SOVERSION "0")
21
22 SET(API_SOURCES "security.cpp")
23 SET(API_HEADERS "security.h")
24
25 SET(DEPENDENCY      klay
26                                         dpm-pil
27                     capi-base-common
28                     capi-system-info
29 )
30
31 PKG_CHECK_MODULES(API_DEPS REQUIRED ${DEPENDENCY})
32
33 SET (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,noexecstack")
34
35 ADD_LIBRARY(${TARGET} SHARED ${API_SOURCES})
36
37 SET_TARGET_PROPERTIES(${TARGET} PROPERTIES COMPILE_FLAGS "-fvisibility=default")
38 SET_TARGET_PROPERTIES(${TARGET} PROPERTIES SOVERSION ${LIB_SOVERSION})
39 SET_TARGET_PROPERTIES(${TARGET} PROPERTIES VERSION   ${LIB_VERSION})
40
41 INCLUDE_DIRECTORIES(SYSTEM ${API_DEPS_INCLUDE_DIRS})
42 TARGET_LINK_LIBRARIES(${TARGET} ${API_DEPS_LIBRARIES} pthread)
43
44 CONFIGURE_FILE(${PC_FILE}.in ${CMAKE_BINARY_DIR}/${PC_FILE} @ONLY)
45
46 INSTALL(FILES ${CMAKE_BINARY_DIR}/${PC_FILE} DESTINATION ${LIB_INSTALL_DIR}/pkgconfig)
47 INSTALL(TARGETS ${TARGET} DESTINATION ${LIB_INSTALL_DIR} COMPONENT RuntimeLibraries)
48 INSTALL(FILES ${API_HEADERS} DESTINATION ${INCLUDE_INSTALL_DIR}/dpm)