Remove unnecessary dependencies
[platform/core/api/notification.git] / CMakeLists.txt
1 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
2 PROJECT(notification C)
3
4 SET(PREFIX ${CMAKE_INSTALL_PREFIX})
5 SET(EXEC_PREFIX "\${prefix}")
6 SET(LIBDIR ${LIB_INSTALL_DIR})
7 SET(INCLUDEDIR "\${prefix}/include/${PROJECT_NAME}")
8
9 #ADD_SUBDIRECTORY(test-app)
10
11 SET(INIT-SRCS
12         ./src/notification_init.c
13 )
14
15 SET(SRCS
16         ./src/notification.c
17         ./src/notification_noti.c
18         ./src/notification_ongoing.c
19         ./src/notification_group.c
20         ./src/notification_db.c
21         ./src/notification_list.c
22         ./src/notification_status.c
23         ./src/notification_ipc.c
24         ./src/notification_setting.c
25         ./src/notification_setting_service.c
26         ./src/notification_internal.c
27         ./src/notification_error.c)
28 SET(HEADERS-DEVEL
29         ./include/notification.h
30         ./include/notification_internal.h
31         ./include/notification_db.h
32         ./include/notification_error.h
33         ./include/notification_type.h
34         ./include/notification_list.h
35         ./include/notification_ongoing.h
36         ./include/notification_ongoing_flag.h
37         ./include/notification_text_domain.h
38         ./include/notification_status.h
39         ./include/notification_status_internal.h
40         ./include/notification_setting.h
41         ./include/notification_setting_internal.h
42         ./include/notification_ipc.h
43         ./include/notification_noti.h
44         ./include/notification_setting_service.h
45    )
46
47 INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include)
48
49 INCLUDE(FindPkgConfig)
50 pkg_check_modules(pkgs REQUIRED
51         sqlite3
52         db-util
53         vconf
54         bundle
55         dlog
56         aul
57         dbus-1
58         dbus-glib-1
59         capi-appfw-app-control
60         capi-appfw-package-manager
61         pkgmgr-info
62         libtzplatform-config
63         glib-2.0
64         gio-2.0
65 )
66
67 FOREACH(flag ${pkgs_CFLAGS})
68         SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}")
69 ENDFOREACH(flag)
70
71 SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} -fvisibility=hidden -g -Wall")
72 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS}")
73
74 SET(CMAKE_SKIP_BUILD_RPATH TRUE)
75
76 IF (HAVE_X11)
77 ADD_DEFINITIONS("-DHAVE_X11")
78 ENDIF (HAVE_X11)
79
80 IF (HAVE_WAYLAND)
81 ADD_DEFINITIONS("-DHAVE_WAYLAND")
82 ENDIF (HAVE_WAYLAND)
83
84 ADD_LIBRARY(${PROJECT_NAME} SHARED ${SRCS})
85 SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES SOVERSION ${MAJORVER})
86 SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES VERSION ${FULLVER})
87 TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${pkgs_LDFLAGS})
88
89 ADD_EXECUTABLE(notification_init ${INIT-SRCS})
90 TARGET_LINK_LIBRARIES(notification_init ${pkgs_LDFLAGS} notification)
91
92 MESSAGE(STATUS "LIB_INSTALL_DIR: " ${LIB_INSTALL_DIR})
93
94 CONFIGURE_FILE(${PROJECT_NAME}.pc.in ${PROJECT_NAME}.pc @ONLY)
95 INSTALL(TARGETS ${PROJECT_NAME} DESTINATION ${LIB_INSTALL_DIR} COMPONENT RuntimeLibraries)
96 INSTALL(FILES ${CMAKE_BINARY_DIR}/${PROJECT_NAME}.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig)
97
98 FOREACH(hfile ${HEADERS-DEVEL})
99         INSTALL(FILES ${CMAKE_SOURCE_DIR}/${hfile} DESTINATION include/${PROJECT_NAME})
100 ENDFOREACH(hfile)
101
102 INSTALL(FILES ${CMAKE_BINARY_DIR}/11_notification-add.post DESTINATION ${SYSCONF_INSTALL_DIR}/gumd/useradd.d/)
103 INSTALL(TARGETS notification_init DESTINATION bin)