Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[onert/onert_run] Use arser for onert_run #13549

Merged
merged 1 commit into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions tests/tools/onert_run/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ list(APPEND ONERT_RUN_SRCS "src/nnfw_util.cc")
list(APPEND ONERT_RUN_SRCS "src/randomgen.cc")
list(APPEND ONERT_RUN_SRCS "src/rawformatter.cc")

nnfw_find_package(Boost REQUIRED program_options)
nnfw_find_package(Ruy QUIET)
nnfw_find_package(HDF5 QUIET)

Expand All @@ -31,11 +30,10 @@ else()
endif(HDF5_FOUND)

target_include_directories(onert_run PRIVATE src)
target_include_directories(onert_run PRIVATE ${Boost_INCLUDE_DIRS})

target_link_libraries(onert_run nnfw_lib_tflite jsoncpp)
target_link_libraries(onert_run nnfw-dev)
target_link_libraries(onert_run ${Boost_PROGRAM_OPTIONS_LIBRARY})
target_link_libraries(onert_run arser)
target_link_libraries(onert_run nnfw_lib_benchmark)
if(Ruy_FOUND AND PROFILE_RUY)
target_link_libraries(onert_run ruy_instrumentation)
Expand Down
Loading