Remove hardcoded path for multiuser support
[platform/core/system/sync-agent.git] / src / framework / CMakeLists.txt
1
2 #############################################
3 #
4 # Step 1. Set Variable and Build Dependency
5 #
6
7 # set a name for the entire project
8 PROJECT(sync-agent)
9
10 SET(LIBNAME "lib${PROJECT_NAME}")
11 SET(LIBDIR "${LIB_INSTALL_DIR}")
12
13 # set variables
14 SET(FW_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../include")
15 SET(FW_SRC_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../src/framework")
16 SET(FW_COMPONETS "account;data-adapter;device;device-manager;engine-controller;event;fsapi;initialization;network-access;platform-monitor;plugin;protocol-binder;security-assistant;utility")
17
18 # checks for build dependency modules : a pkg-config module for CMake
19 INCLUDE(FindPkgConfig)
20 pkg_check_modules(LPKGS REQUIRED
21                                         glib-2.0
22                                         sqlite3
23                                         libsoup-2.4
24                                         vconf
25                                         uuid
26                                         libxml-2.0
27                                         libwbxml2
28                                         dlog
29                                         dbus-glib-1
30                                         sysman
31                                         libtzplatform-config
32                                         )
33
34 #############################################
35 #
36 # Step 2. Set Compile Environment
37 #
38
39 # set extra cflags from build dependency
40 STRING(REPLACE ";" " " EXTRA_CFLAGS "${LPKGS_CFLAGS}")
41 #SET(EXTRA_CFLAGS "-fvisibility=hidden ${EXTRA_CFLAGS}")
42
43 # find all source files in a directory.
44 FOREACH(FW_COMPONENT ${FW_COMPONETS})
45         AUX_SOURCE_DIRECTORY(${FW_SRC_DIR}/${FW_COMPONENT} SRCS)
46 ENDFOREACH(FW_COMPONENT)
47
48 # add include directories to the build.
49 INCLUDE_DIRECTORIES(${FW_INCLUDE_DIR})
50 FOREACH(FW_COMPONENT ${FW_COMPONETS})
51         INCLUDE_DIRECTORIES(${FW_INCLUDE_DIR}/${FW_COMPONENT})
52 ENDFOREACH(FW_COMPONENT)
53 INCLUDE_DIRECTORIES(${FW_SRC_DIR})
54 FOREACH(FW_COMPONENT ${FW_COMPONETS})
55         INCLUDE_DIRECTORIES(${FW_SRC_DIR}/${FW_COMPONENT})
56 ENDFOREACH(FW_COMPONENT)
57
58 #############################################
59 #
60 # Step 3. Set Link Environment
61 #
62
63 # add a library to the project using the specified source files.
64 ADD_LIBRARY(${LIBNAME} SHARED ${SRCS})
65
66 # link a target to given libraries from pkg-config.
67 TARGET_LINK_LIBRARIES(${LIBNAME} ${LPKGS_LDFLAGS} "-lgcrypt")
68
69 # sets additional compiler flags used to build sources within the target.
70 SET_TARGET_PROPERTIES(${LIBNAME} PROPERTIES COMPILE_FLAGS "${EXTRA_CFLAGS}")
71
72 # override the default target name prefix (such as "lib")
73 SET_TARGET_PROPERTIES(${LIBNAME} PROPERTIES PREFIX "")
74
75 # specify the build version
76 SET_TARGET_PROPERTIES(${LIBNAME} PROPERTIES VERSION ${VERSION})
77
78 # specify the api version
79 SET_TARGET_PROPERTIES(${LIBNAME} PROPERTIES SOVERSION ${VERSION_MAJOR})
80
81
82 #############################################
83 #
84 # Step 4. Install packages
85 #
86
87 # install library files
88 INSTALL(TARGETS ${LIBNAME} DESTINATION ${LIB_INSTALL_DIR})
89
90 # install .pc file
91 CONFIGURE_FILE(${PROJECT_NAME}.pc.in ${PROJECT_NAME}.pc @ONLY)
92 INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_NAME}.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig)
93
94 # install header files
95 INSTALL(FILES ${FW_INCLUDE_DIR}/sync_agent.h DESTINATION include/)
96 FOREACH(FW_COMPONENT ${FW_COMPONETS})
97         INSTALL(DIRECTORY ${FW_INCLUDE_DIR}/${FW_COMPONENT}/ DESTINATION include/sync-agent/${FW_COMPONENT} FILES_MATCHING PATTERN "*.h")
98 ENDFOREACH(FW_COMPONENT)
99
100 ADD_DEFINITIONS("-DGLIB_VERSION_MIN_REQUIRED=(2<<16|32<<8) ")