From 586c8e7b7acf7b6f748c295b8d8e6a91b3fafb15 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/On-Device=20Lab=28SR=29/Staff?= =?utf8?q?=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Tue, 12 Mar 2019 18:37:39 +0900 Subject: [PATCH] Do NOT use quote in CMAKE_DEPENDENT_OPTIONS (#4692) This does not work as expected. Signed-off-by: Jonghyun Park --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5f31cc5..1d385f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -57,7 +57,7 @@ option(BUILD_TENSORFLOW_LITE "Build TensorFlow Lite from the downloaded source" option(DOWNLOAD_ARMCOMPUTE "Download ARM Compute source" ON) CMAKE_DEPENDENT_OPTION(BUILD_ARMCOMPUTE "Build ARM Compute from the downloaded source" # Enable ARMCompute build if the target architecture is arm - ON "${TARGET_ARCH_BASE} STREQUAL \"arm\"" + ON "${TARGET_ARCH_BASE} STREQUAL arm" # Disable ARMCompute build otherwise OFF) option(DOWNLOAD_NONIUS "Download nonius source" ON) -- 2.7.4