From e38c418ebc434d6c2a5618388b0bd05963308047 Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 2 Sep 2021 13:12:11 +0100 Subject: Add sample app for asynchronous execution Signed-off-by: Jan Eilers Change-Id: I6d903c721d71a28bc02e4e98aaa813fb9159b678 --- samples/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'samples/CMakeLists.txt') diff --git a/samples/CMakeLists.txt b/samples/CMakeLists.txt index 7be6a69369..7af8b7265a 100644 --- a/samples/CMakeLists.txt +++ b/samples/CMakeLists.txt @@ -1,6 +1,9 @@ if(BUILD_SAMPLE_APP AND ARMNNREF) add_executable(SimpleSample SimpleSample.cpp) target_link_libraries(SimpleSample armnn ${CMAKE_THREAD_LIBS_INIT}) + + add_executable(AsyncExecutionSample AsyncExecutionSample.cpp) + target_link_libraries(AsyncExecutionSample armnn ${CMAKE_THREAD_LIBS_INIT}) endif() if(BUILD_SAMPLE_APP AND SAMPLE_DYNAMIC_BACKEND) -- cgit v1.2.1