From: Сергей Баранников/AI Tools Lab /SRR/Engineer/삼성전자 Date: Fri, 22 Mar 2019 00:44:52 +0000 (+0300) Subject: [neurun] Remove unneeded dependency of neurun-core on tflite (#4817) X-Git-Tag: submit/tizen/20190325.013700~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d48160f9596ecf15835a83e86fad9c3abc156c57;p=platform%2Fcore%2Fml%2Fnnfw.git [neurun] Remove unneeded dependency of neurun-core on tflite (#4817) Looks like it is a remnant of times when neurun was being built as a single library (now it is divided into several parts, such as core, front end and back end). Signed-off-by: Sergei Barannikov --- diff --git a/runtimes/neurun/core/CMakeLists.txt b/runtimes/neurun/core/CMakeLists.txt index 1e04972..2e2bcb7 100644 --- a/runtimes/neurun/core/CMakeLists.txt +++ b/runtimes/neurun/core/CMakeLists.txt @@ -4,9 +4,7 @@ add_library(neurun-core STATIC ${SOURCES}) set_target_properties(neurun-core PROPERTIES POSITION_INDEPENDENT_CODE ON) target_include_directories(neurun-core PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include) target_include_directories(neurun-core PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src) -target_include_directories(neurun-core PUBLIC ${CMAKE_SOURCE_DIR}/externals/tensorflow) target_link_libraries(neurun-core nnapi-header) # TODO Remove this dependency -target_link_libraries(neurun-core tensorflow-lite) target_link_libraries(neurun-core nnfw_lib_misc) target_link_libraries(neurun-core nnfw_lib_cpp14) target_compile_options(neurun-core PRIVATE -Wall -Wextra -Werror)