From 98c504e20ee6c92bc5cd04ce9c8e91512558dd28 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=84=B8=ED=9D=AC/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Principal=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Mon, 5 Nov 2018 13:51:00 +0900 Subject: [PATCH] Add tflchef to contrib precedence list (#2114) * Add tflchef to contrib precedence list This will add tflchef to precedence as enco will use tflchef as tflite generator Signed-off-by: SaeHie Park * edit comments --- contrib/CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/contrib/CMakeLists.txt b/contrib/CMakeLists.txt index 73dea58..d786690 100644 --- a/contrib/CMakeLists.txt +++ b/contrib/CMakeLists.txt @@ -9,12 +9,13 @@ function(add_nncc_contrib_directory DIR) endfunction(add_nncc_contrib_directory) function(add_nncc_contrib_directories) - # NOTE Add caffegen, nnkit, and ann before enco as enco's test framework depends on these projects + # NOTE Add caffegen, nnkit, ann and tflchef before enco as enco's test framework depends on these projects add_nncc_contrib_directory(caffegen) add_nncc_contrib_directory(nnkit) add_nncc_contrib_directory(ann) + add_nncc_contrib_directory(tflchef) # tflchef uses nni of nnkit as a tool - list_subdirectories(PROJECT_DIRS EXCLUDES caffegen nnkit ann) + list_subdirectories(PROJECT_DIRS EXCLUDES caffegen nnkit ann tflchef) foreach(PROJECT_DIR IN ITEMS ${PROJECT_DIRS}) add_nncc_contrib_directory(${PROJECT_DIR}) -- 2.7.4