summaryrefslogtreecommitdiff
path: root/compiler/tflchef/CMakeLists.txt
blob: 71c5e2ab1467630332ec7468aa638c9715e48d5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
nnas_find_package(Protobuf QUIET)

if(NOT Protobuf_FOUND)
  return()
endif(NOT Protobuf_FOUND)

if(NOT TARGET mio_tflite)
  return()
endif(NOT TARGET mio_tflite)

# Recipe Parser
add_subdirectory(proto)
# Core Library
add_subdirectory(core)
# TFlite Library
add_subdirectory(tflite)
# Tools
add_subdirectory(tools)
add_subdirectory(tests)