storage: Remove profile version from header files
[platform/core/system/libstorage.git] / CMakeLists.txt
index a8afe02..1f6875c 100644 (file)
@@ -10,8 +10,19 @@ SET(VERSION 0.1)
 SET(INC_DIR include)
 INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${INC_DIR})
 
-SET(dependents "dlog capi-base-common vconf glib-2.0")
-SET(pc_dependents "capi-base-common")
+SET(dependents
+               dlog
+               capi-base-common
+               vconf
+               glib-2.0
+               gio-2.0
+               libtzplatform-config
+               mount
+               blkid
+               capi-system-info
+               libsyscommon
+)
+SET(PC_REQUIRED "capi-base-common")
 
 INCLUDE(FindPkgConfig)
 pkg_check_modules(rpkgs REQUIRED ${dependents})
@@ -22,7 +33,8 @@ ENDFOREACH(flag)
 
 SET(HEADERS
        include/storage.h
-       include/storage-expand.h)
+       include/storage-expand.h
+       include/storage-internal.h)
 
 SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} -fvisibility=hidden")
 SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} -g")
@@ -36,7 +48,11 @@ SET(SRCS
        src/statvfs.c
        src/storage.c
        src/storage-internal.c
-       src/storage-sdcard.c)
+       src/storage-external.c
+       src/storage-external-dbus.c
+       src/storage-inhouse.c
+       src/storage-common.c
+       )
 
 ADD_LIBRARY(${PROJECT_NAME} SHARED ${SRCS} ${TARGET_SRCS})
 TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${rpkgs_LDFLAGS})