summaryrefslogtreecommitdiff
path: root/contrib/detection/CMakeLists.txt
blob: 37d91b5278aa80a42222514dcc8831237da6b649 (plain)
1
2
3
4
5
6
7
8
9
10
11
if(NOT BUILD_DETECTION_APP)
  return()
endif(NOT BUILD_DETECTION_APP)

nnfw_find_package(Tensorflow REQUIRED)

list(APPEND SOURCES detection.cpp)

add_executable(detection ${SOURCES})
target_link_libraries(detection nnfw_lib_misc)
target_link_libraries(detection tensorflow-core)