summaryrefslogtreecommitdiff
path: root/compiler/tfl-inspect/CMakeLists.txt
blob: c2c7dfe9dd7d53f77917cfcd23a8942c5a8a5fa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
if(NOT TARGET mio_tflite)
  return()
endif(NOT TARGET mio_tflite)

set(DRIVER "driver/Driver.cpp")

file(GLOB_RECURSE SOURCES "src/*.cpp")

add_executable(tfl-inspect ${DRIVER} ${SOURCES})
target_include_directories(tfl-inspect PRIVATE src)
target_link_libraries(tfl-inspect mio_tflite)
target_link_libraries(tfl-inspect safemain)
target_link_libraries(tfl-inspect stdex)