1 # Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
7 # http://www.apache.org/licenses/LICENSE-2.0
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.
15 # @file CMakeLists.txt
16 # @author Lukasz Marek (l.marek@samsung.com)
21 # Check required modules
22 INCLUDE(FindPkgConfig)
23 PKG_CHECK_MODULES(SYS_EFL_SOCKET
29 # Add core include directories
31 ${DPL_LOG_INCLUDE_DIR}
32 ${DPL_CORE_INCLUDE_DIR}
33 ${DPL_SOCKET_INCLUDE_DIR}
34 ${DPL_EVENT_INCLUDE_DIR}
35 ${SYS_EFL_SOCKET_INCLUDE_DIRS}
39 ${SYS_EFL_SOCKET_LIBRARY_DIRS}
42 # Base EFL based DPL library
43 SET(DPL_EFL_SOCKET_LIBRARY "${PROJECT_NAME}-socket-efl")
45 # Build shared library
47 ADD_LIBRARY(${TARGET_DPL_SOCKET_EFL} SHARED ${DPL_SOCKET_SOURCES})
49 TARGET_LINK_LIBRARIES(${TARGET_DPL_SOCKET_EFL}
50 ${SYS_EFL_SOCKET_LIBRARIES}
52 ${TARGET_DPL_EVENT_EFL}
55 # Target library properties
56 SET_TARGET_PROPERTIES(${TARGET_DPL_SOCKET_EFL} PROPERTIES
59 OUTPUT_NAME ${DPL_EFL_SOCKET_LIBRARY})
62 INSTALL(TARGETS ${TARGET_DPL_SOCKET_EFL}
64 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
66 # Install detail headers
67 INSTALL(FILES ${DPL_SOCKET_HEADERS}
68 DESTINATION include/dpl-efl/dpl/socket)
70 # Install pkgconfig script
71 INSTALL(FILES dpl-socket-efl.pc
72 DESTINATION lib/pkgconfig)