11 lines
347 B
CMake
11 lines
347 B
CMake
if(BUILD_SAMPLE_APP AND ARMNNREF)
|
|
add_executable(SimpleSample SimpleSample.cpp)
|
|
target_link_libraries(SimpleSample armnn ${CMAKE_THREAD_LIBS_INIT})
|
|
endif()
|
|
|
|
if(BUILD_SAMPLE_APP AND SAMPLE_DYNAMIC_BACKEND)
|
|
add_executable(DynamicSample DynamicSample.cpp)
|
|
target_link_libraries(DynamicSample armnn ${CMAKE_THREAD_LIBS_INIT})
|
|
endif()
|
|
|