Remove path to TFLM make download folder

Change-Id: Iaf22f1d7ad3e732f9163702cc08c8c2a3bb3a69d
diff --git a/applications/inference_process/CMakeLists.txt b/applications/inference_process/CMakeLists.txt
index 9afe34a..47fae19 100644
--- a/applications/inference_process/CMakeLists.txt
+++ b/applications/inference_process/CMakeLists.txt
@@ -20,16 +20,18 @@
 
 add_library(inference_process STATIC)
 
-target_include_directories(inference_process PUBLIC include
-                           PRIVATE ${TENSORFLOW_PATH} ${TENSORFLOW_PATH}/tensorflow/lite/micro/tools/make/downloads/flatbuffers/include)
+target_include_directories(inference_process PUBLIC include)
 
 target_link_libraries(inference_process PRIVATE tflu cmsis_core cmsis_device ethosu_crc)
+
 if (TARGET layer_by_layer_profiler)
     target_link_libraries(inference_process PRIVATE layer_by_layer_profiler)
 endif()
+
 if (TARGET arm_profiler)
     target_link_libraries(inference_process PRIVATE arm_profiler)
 endif()
+
 if (TARGET ethosu_log)
     target_link_libraries(inference_process PRIVATE ethosu_log)
 endif()