blob: 7be6a69369c78129e1e88e881180964f77a54eb7 [file] [log] [blame]
Matteo Martincighdb16dd32019-08-27 16:41:11 +01001if(BUILD_SAMPLE_APP AND ARMNNREF)
telsoa01c577f2c2018-08-31 09:22:23 +01002 add_executable(SimpleSample SimpleSample.cpp)
Matthew Bentham347dfcf2018-11-19 11:28:58 +00003 target_link_libraries(SimpleSample armnn ${CMAKE_THREAD_LIBS_INIT})
telsoa01c577f2c2018-08-31 09:22:23 +01004endif()
Narumol Prangnawarat867eba52020-02-03 12:29:56 +00005
Narumol Prangnawarat13b59a42020-02-07 10:28:31 +00006if(BUILD_SAMPLE_APP AND SAMPLE_DYNAMIC_BACKEND)
Narumol Prangnawarat867eba52020-02-03 12:29:56 +00007 add_executable(DynamicSample DynamicSample.cpp)
8 target_link_libraries(DynamicSample armnn ${CMAKE_THREAD_LIBS_INIT})
9endif()
Éanna Ó Catháin919c14e2020-09-14 17:36:49 +010010
Jan Eilersc1c872f2021-07-22 13:17:04 +010011if(BUILD_SAMPLE_APP AND ARMCOMPUTECL)
12 add_executable(CustomMemoryAllocatorSample CustomMemoryAllocatorSample.cpp)
13 target_link_libraries(CustomMemoryAllocatorSample armnn ${CMAKE_THREAD_LIBS_INIT})
14endif()
15