Release 0.5.0
[platform/core/security/cynara.git] / src / client-common / CMakeLists.txt
1 # Copyright (c) 2014-2015 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 # @file        CMakeLists.txt
16 # @author      Zofia Abramowska <z.abramowska@samsung.com>
17 #
18
19 SET(LIB_CYNARA_CLIENT_COMMON_VERSION_MAJOR 0)
20 SET(LIB_CYNARA_CLIENT_COMMON_VERSION ${LIB_CYNARA_CLIENT_COMMON_VERSION_MAJOR}.5.0)
21
22 SET(LIB_CYNARA_COMMON_PATH ${CYNARA_PATH}/client-common)
23
24 INCLUDE_DIRECTORIES(
25     ${LIB_CYNARA_COMMON_PATH}
26     ${CYNARA_PATH}/include
27     )
28
29 SET(LIB_CYNARA_COMMON_SOURCES
30     ${LIB_CYNARA_COMMON_PATH}/cache/CapacityCache.cpp
31     )
32
33 ADD_DEFINITIONS("-fvisibility=default")
34
35 ADD_LIBRARY(${TARGET_LIB_CYNARA_COMMON} SHARED ${LIB_CYNARA_COMMON_SOURCES})
36
37 SET_TARGET_PROPERTIES(
38     ${TARGET_LIB_CYNARA_COMMON}
39     PROPERTIES
40         SOVERSION ${LIB_CYNARA_CLIENT_COMMON_VERSION_MAJOR}
41         VERSION ${LIB_CYNARA_CLIENT_COMMON_VERSION}
42     )
43
44 TARGET_LINK_LIBRARIES(${TARGET_LIB_CYNARA_COMMON}
45     ${TARGET_CYNARA_COMMON}
46     )
47
48 INSTALL(TARGETS ${TARGET_LIB_CYNARA_COMMON} DESTINATION ${LIB_INSTALL_DIR})