Change directory name from common to src
authorInki Dae <inki.dae@samsung.com>
Wed, 25 Mar 2020 06:41:08 +0000 (15:41 +0900)
committerInki Dae <inki.dae@samsung.com>
Tue, 14 Apr 2020 00:42:53 +0000 (09:42 +0900)
Let's just use generic directory name, src, instead of specfic one,
common. We already dropped inference framework so we don't have to
adhere to use common directory name.

Change-Id: Ib0947dd90f5ee5c5d935d75435a4f36c1b869146
Signed-off-by: Inki Dae <inki.dae@samsung.com>
CMakeLists.txt
src/inference_engine_common_impl.cpp [moved from common/inference_engine_common_impl.cpp with 100% similarity]
src/inference_ini.cpp [moved from common/inference_ini.cpp with 100% similarity]

index afebd8e..ee4669a 100644 (file)
@@ -32,12 +32,11 @@ ADD_DEFINITIONS("-DTIZEN_DEBUG")
 SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=${LIB_INSTALL_DIR}")
 
 #common
-aux_source_directory(common SOURCES)
+aux_source_directory(src SOURCES)
 ADD_LIBRARY(${fw_name_common} SHARED ${SOURCES})
 
 TARGET_LINK_LIBRARIES(${fw_name_common} dlog iniparser stdc++fs)
 
-
 SET_TARGET_PROPERTIES(${fw_name_common}
      PROPERTIES
      VERSION ${FULLVER}