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

set(DRIVER "driver/Driver.cpp")

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

add_executable(tfldump ${DRIVER} ${SOURCES})
target_include_directories(tfldump PRIVATE include)
target_link_libraries(tfldump mio_tflite)
target_link_libraries(tfldump safemain)
target_link_libraries(tfldump stdex)
target_link_libraries(tfldump flatbuffers)