summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInki Dae <inki.dae@samsung.com>2018-06-28 19:43:08 +0900
committerInki Dae <inki.dae@samsung.com>2018-09-06 10:10:39 +0900
commit7a1bf0a78c402c26f2f6a6ba43352f6f8e6552a9 (patch)
tree315005fd0554d3cacf1b8466d4f5a898eeaf15a9
parentec97b086c251edaa6ef148ffb175d347b3eee7ef (diff)
downloadarmnn-7a1bf0a78c402c26f2f6a6ba43352f6f8e6552a9.tar.gz
armnn-7a1bf0a78c402c26f2f6a6ba43352f6f8e6552a9.tar.bz2
armnn-7a1bf0a78c402c26f2f6a6ba43352f6f8e6552a9.zip
tests: fix Tizen build
This patch moves install directory of examples to prevent gbs build from failed. Signed-off-by: Inki Dae <inki.dae@samsung.com>
-rw-r--r--tests/CMakeLists.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 6c0b945de..45812e3e9 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -32,6 +32,9 @@ if(BUILD_CAFFE_PARSER)
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
${Boost_PROGRAM_OPTIONS_LIBRARY})
+ set_target_properties(${testName} PROPERTIES
+ RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_SOURCE_DIR}/bin
+ RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_SOURCE_DIR}/bin)
addDllCopyCommands(${testName})
endmacro()
@@ -101,6 +104,9 @@ if(BUILD_TF_PARSER)
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
${Boost_PROGRAM_OPTIONS_LIBRARY})
+ set_target_properties(${testName} PROPERTIES
+ RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_SOURCE_DIR}/bin
+ RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_SOURCE_DIR}/bin)
addDllCopyCommands(${testName})
endmacro()
@@ -224,5 +230,8 @@ if (BUILD_CAFFE_PARSER OR BUILD_TF_PARSER OR BUILD_TF_LITE_PARSER OR BUILD_ONNX_
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
${Boost_PROGRAM_OPTIONS_LIBRARY})
+ set_target_properties(ExecuteNetwork PROPERTIES
+ RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_SOURCE_DIR}/bin
+ RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_SOURCE_DIR}/bin)
addDllCopyCommands(ExecuteNetwork)
endif()