From 52eff347144a6058187172670afd40e5c9431a0d Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=84=B8=ED=9D=AC/On-Device=20Lab=28SR=29/Princip?= =?utf8?q?al=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Wed, 10 Apr 2019 13:21:18 +0900 Subject: [PATCH] [moco] fix cmake for tf frontend (#3198) This will fix cmake not to use double quote to remove test files from source list Signed-off-by: SaeHie Park --- contrib/moco/lib/frontend/tf/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/moco/lib/frontend/tf/CMakeLists.txt b/contrib/moco/lib/frontend/tf/CMakeLists.txt index f5716ea..a00bee0 100644 --- a/contrib/moco/lib/frontend/tf/CMakeLists.txt +++ b/contrib/moco/lib/frontend/tf/CMakeLists.txt @@ -14,7 +14,7 @@ add_subdirectory(proto) file(GLOB_RECURSE SOURCES "src/*.cpp") file(GLOB_RECURSE TESTS "src/*.test.cpp") -list(REMOVE_ITEM SOURCES "${TESTS}") +list(REMOVE_ITEM SOURCES ${TESTS}) add_library(moco_tf_frontend SHARED ${SOURCES}) target_include_directories(moco_tf_frontend PRIVATE src) -- 2.7.4