From: 박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 Date: Tue, 12 Mar 2019 09:37:39 +0000 (+0900) Subject: Do NOT use quote in CMAKE_DEPENDENT_OPTIONS (#4692) X-Git-Tag: submit/tizen/20190325.013700~89 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=586c8e7b7acf7b6f748c295b8d8e6a91b3fafb15;p=platform%2Fcore%2Fml%2Fnnfw.git Do NOT use quote in CMAKE_DEPENDENT_OPTIONS (#4692) This does not work as expected. Signed-off-by: Jonghyun Park --- 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)