Unset ip_resolved_cb on vine_service_destroy
[platform/core/api/vine.git] / src / CMakeLists.txt
1 # Copyright (c) 2021 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 INCLUDE_DIRECTORIES(
17     ${CMAKE_SOURCE_DIR}/include
18     ${VINE_PATH}/include
19     ${VINE_LOGGER_PATH}
20     ${fw_name_deps_INCLUDE_DIRS}
21 )
22
23 FILE(GLOB VINE_SOURCES ${VINE_PATH}/*.c ${VINE_PATH}/*.cpp)
24
25 ADD_DEFINITIONS("-fvisibility=default")
26 ADD_LIBRARY(${TARGET_VINE} SHARED ${VINE_SOURCES})
27
28 SET_TARGET_PROPERTIES(
29     ${TARGET_VINE}
30     PROPERTIES
31         SOVERSION ${VINE_VERSION_MAJOR}
32         VERSION ${VINE_VERSION}
33 )
34
35 TARGET_LINK_LIBRARIES(${TARGET_VINE}
36     ${VINE_LOGGER}
37         ${fw_name_deps_LIBRARIES}
38     ${VINE_DEPS_LIB}
39     dl
40 )
41
42 INSTALL(TARGETS ${TARGET_VINE} DESTINATION "${LIB_DIR}")