From 4024105754d0bfce4f8789cd95dbdfbd055ede21 Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Tue, 23 Apr 2024 20:21:29 +0300 Subject: [PATCH] Fix binary name when calling modelcompiler --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6fa5a62053..e226d70659 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -408,7 +408,7 @@ if(MSVC) endif(MSVC) if (CMAKE_CROSSCOMPILING) - find_program(MODELCOMPILER modelcompiler DOC "modelcompiler executable for the host") + find_program(MODELCOMPILER pioneer-modelcompiler DOC "modelcompiler executable for the host") else (CMAKE_CROSSCOMPILING) set(MODELCOMPILER $) endif (CMAKE_CROSSCOMPILING)