Skip to content

Commit afd73bd

Browse files
authored
Arm backend: Fix CMakeLists relative path (#16431)
Minor fix changing relative paths for the example Ethos-U image classification application
1 parent 6dd4e05 commit afd73bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/arm/image_classification_example/runtime/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ add_executable(img_class_example main.cpp)
7575

7676
target_sources(
7777
img_class_example
78-
PRIVATE main.cpp ../executor_runner/arm_memory_allocator.cpp
79-
../executor_runner/arm_perf_monitor.cpp
78+
PRIVATE main.cpp
79+
${CMAKE_SOURCE_DIR}/../../executor_runner/arm_memory_allocator.cpp
8080
)
8181

8282
target_link_libraries(

0 commit comments

Comments
 (0)