From 4e0cca273703164033770848eee15d89cf0352b2 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: Wed, 13 Mar 2019 19:42:40 +0900 Subject: [PATCH] Do NOT update global link directory setting (#4716) This commit removes global link_directories in the top-level CMakeLists.txt. This command was introduced as a workaround for CI build failure, but is no longer required. Signed-off-by: Jonghyun Park --- CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 77a0c0b..51034c8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,10 +48,6 @@ include("cmake/CfgOptionFlags.cmake") # TARGET_ARCH: target architecture string for cross building # TARGET_OS: target os string for cross building -# NOTE '${CMAKE_INSTALL_PREFIX}/lib' should be added as a link directory as -# CI server places pre-built ARM compute libraries on this directory. -link_directories(${CMAKE_INSTALL_PREFIX}/lib) - # Download configuration option(DOWNLOAD_TENSORFLOW "Download Tensorflow source" ON) option(DOWNLOAD_ABSL "Download Absl source" ON) -- 2.7.4