Arrange CMakeLists.txt and spec file 83/160383/2
authorSeungha Son <seungha.son@samsung.com>
Thu, 16 Nov 2017 02:16:25 +0000 (11:16 +0900)
committerSeungha Son <seungha.son@samsung.com>
Fri, 17 Nov 2017 06:38:39 +0000 (15:38 +0900)
Signed-off-by: Seungha Son <seungha.son@samsung.com>
Change-Id: I1d4911e8e1b4a2678070eace5480561a072a7f2a

CMakeLists.txt
packaging/notification.spec

index 664f245..c327f09 100755 (executable)
@@ -1,56 +1,15 @@
 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
 PROJECT(notification C)
 
-SET(PREFIX ${CMAKE_INSTALL_PREFIX})
-SET(EXEC_PREFIX "\${prefix}")
-SET(LIBDIR ${LIB_INSTALL_DIR})
-SET(INCLUDEDIR "\${prefix}/include/${PROJECT_NAME}")
-
 #ADD_SUBDIRECTORY(test-app)
 
 SET(INIT-SRCS
        ./src/notification_init.c
 )
 
-SET(SRCS
-       ./src/notification.c
-       ./src/notification_noti.c
-       ./src/notification_ongoing.c
-       ./src/notification_group.c
-       ./src/notification_db.c
-       ./src/notification_db_query.h
-       ./src/notification_list.c
-       ./src/notification_status.c
-       ./src/notification_ipc.c
-       ./src/notification_setting.c
-       ./src/notification_setting_service.c
-       ./src/notification_internal.c
-       ./src/notification_viewer.c
-       ./src/notification_error.c
-       ./src/notification_shared_file.c
-       )
-SET(HEADERS-DEVEL
-       ./include/notification.h
-       ./include/notification_internal.h
-       ./include/notification_db.h
-       ./include/notification_error.h
-       ./include/notification_type.h
-       ./include/notification_list.h
-       ./include/notification_ongoing.h
-       ./include/notification_ongoing_flag.h
-       ./include/notification_text_domain.h
-       ./include/notification_status.h
-       ./include/notification_status_internal.h
-       ./include/notification_setting.h
-       ./include/notification_setting_internal.h
-       ./include/notification_ipc.h
-       ./include/notification_noti.h
-       ./include/notification_setting_service.h
-       ./include/notification_viewer.h
-       ./include/notification_shared_file.h
-   )
-
 INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include)
+AUX_SOURCE_DIRECTORY(src SRCS)
+LIST(REMOVE_ITEM SRCS ${INIT-SRCS})
 
 INCLUDE(FindPkgConfig)
 pkg_check_modules(pkgs REQUIRED
@@ -81,14 +40,6 @@ SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE")
 
 SET(CMAKE_SKIP_BUILD_RPATH TRUE)
 
-IF (HAVE_X11)
-ADD_DEFINITIONS("-DHAVE_X11")
-ENDIF (HAVE_X11)
-
-IF (HAVE_WAYLAND)
-ADD_DEFINITIONS("-DHAVE_WAYLAND")
-ENDIF (HAVE_WAYLAND)
-
 ADD_LIBRARY(${PROJECT_NAME} SHARED ${SRCS})
 SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES SOVERSION ${MAJORVER})
 SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES VERSION ${FULLVER})
@@ -100,10 +51,13 @@ TARGET_LINK_LIBRARIES(notification_init ${pkgs_LDFLAGS} notification "-pie")
 CONFIGURE_FILE(${PROJECT_NAME}.pc.in ${PROJECT_NAME}.pc @ONLY)
 INSTALL(TARGETS ${PROJECT_NAME} DESTINATION ${LIB_INSTALL_DIR} COMPONENT RuntimeLibraries)
 INSTALL(FILES ${CMAKE_BINARY_DIR}/${PROJECT_NAME}.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig)
-
-FOREACH(hfile ${HEADERS-DEVEL})
-       INSTALL(FILES ${CMAKE_SOURCE_DIR}/${hfile} DESTINATION include/${PROJECT_NAME})
-ENDFOREACH(hfile)
+INSTALL(DIRECTORY ${CMAKE_SOURCE_DIR}/include/
+        DESTINATION include/notification
+        FILES_MATCHING
+               PATTERN "*_private.h" EXCLUDE
+               PATTERN "*_group.h" EXCLUDE
+               PATTERN "*_debug.h" EXCLUDE
+        PATTERN "*.h")
 
 INSTALL(FILES ${CMAKE_BINARY_DIR}/11_notification-add.post DESTINATION ${SYSCONF_INSTALL_DIR}/gumd/useradd.d/)
 INSTALL(TARGETS notification_init DESTINATION bin)
index 5cb38d9..bc10d27 100755 (executable)
@@ -48,15 +48,9 @@ Development files needed to build software that needs to system a system notific
 MAJORVER=`echo %{version} | awk 'BEGIN {FS="."}{print $1}'`
 export LDFLAGS+="-Wl,--rpath=%{_prefix}/lib -Wl,--as-needed"
 LDFLAGS="$LDFLAGS"
-%if %{with wayland}
 %cmake . \
-       -DCMAKE_INSTALL_PREFIX=%{_prefix} -DHAVE_WAYLAND=On \
+       -DCMAKE_INSTALL_PREFIX=%{_prefix} \
        -DMAJORVER=${MAJORVER} -DFULLVER=%{version}
-%else
-%cmake . \
-       -DCMAKE_INSTALL_PREFIX=%{_prefix} -DHAVE_X11=On \
-       -DMAJORVER=${MAJORVER} -DFULLVER=%{version}
-%endif
 make %{?jobs:-j%jobs}
 
 %install