summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
author이상규/On-Device Lab(SR)/Principal Engineer/삼성전자 <sg5.lee@samsung.com>2019-09-10 13:18:11 +0900
committer이춘석/On-Device Lab(SR)/Staff Engineer/삼성전자 <chunseok.lee@samsung.com>2019-09-10 13:18:11 +0900
commite083060c7c931787024cc8ee955bbfb94ba4ab74 (patch)
tree11be482f7665a8689a1fed66d0890df94c578e06 /tests
parentbd4e675af9f72b90ffa80990ddc287d0c2868811 (diff)
downloadnnfw-e083060c7c931787024cc8ee955bbfb94ba4ab74.tar.gz
nnfw-e083060c7c931787024cc8ee955bbfb94ba4ab74.tar.bz2
nnfw-e083060c7c931787024cc8ee955bbfb94ba4ab74.zip
Fix error during building custom op app for pacl (#7329)
Only nuerun supports custom op. Signed-off-by: Sanggyu Lee <sg5.lee@samsung.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/custom_op/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/custom_op/CMakeLists.txt b/tests/custom_op/CMakeLists.txt
index e37b54c7f..ffdfc877c 100644
--- a/tests/custom_op/CMakeLists.txt
+++ b/tests/custom_op/CMakeLists.txt
@@ -1,2 +1,6 @@
+if(NOT BUILD_NEURUN)
+ return()
+endif(NOT BUILD_NEURUN)
+
add_subdirectory(apps)
add_subdirectory(kernels)