File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 22* .slo
33* .lo
44* .o
5- * .a
65* .la
76* .lai
87* .so
@@ -55,7 +54,7 @@ compile_commands.json
5554.idea
5655
5756# training data
58- model /training_data
57+ model /training_data *
5958
6059# models
6160model /trained_models
Original file line number Diff line number Diff line change @@ -39,8 +39,11 @@ set(BEHAVIORS
3939find_package (QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)
4040find_package (Qt${QT_VERSION_MAJOR} COMPONENTS Core REQUIRED)
4141
42- # TensorFlow
43- find_package (TensorFlow REQUIRED)
42+ # TensorFlow Lite
43+ find_library (TFLITE_LIBRARIES
44+ NAMES tflite
45+ HINTS "${CMAKE_CURRENT_SOURCE_DIR} /3rd/tflite"
46+ NO_CMAKE_FIND_ROOT_PATH )
4447
4548
4649# ==== MAKING TARGET =========================================
@@ -51,7 +54,7 @@ add_compile_definitions(BEHAVIORS_PATH="${BEHAVIORS_PATH}")
5154
5255target_link_libraries (${SMART_CAR_TARGET}
5356 Qt${QT_VERSION_MAJOR} ::Core
54- TensorFlow
57+ ${TFLITE_LIBRARIES}
5558 peripherals
5659 behaviors
5760 network
You can’t perform that action at this time.
0 commit comments