08-18-2022 07:14 AM
Hello,
I created application in LabVIEW environment that is based on Actor framework. It uses some other projects functionality packed in VI package manager(obviously installed during starting the application).
"LabView environment"
When I start launcher VI in LabView environment everything is starting, main actor framework works, every functionality is available. VIs are reaching out for other projects installed by VI Package manager. It is great.
"Builded application"
But when I compile it for exe. Compilation goes as planed, no errors. I start exe created by compilation. Launcher is visible and without error is executed, but nothing is showing up. So application did not started fully, or launcher triggered actor to start but actor did not started.
Do anyone know how I could debug what is going on with this actor if error is not returned during execution launch VI?
Or maybe someone had similar problem?
Best Regards, Eryk
08-18-2022 07:55 AM
You are dynamically calling actor VIs, so the builder does not know to build those actors. In the Source Files section of the build specification, you need to set your actor libraries to "always included".
08-18-2022 08:13 AM
I could not see dependencies as member of Source files. Is there a way to add them here?
08-18-2022 08:55 AM
@ESteb wrote:
I could not see dependencies as member of Source files. Is there a way to add them here?
Drag them from dependencies to your project.
08-19-2022 07:08 AM
I dragged ActorFramework library to my project. Maked sure that it is always included.
After compilation it is behaving the same
08-19-2022 08:22 AM
Are those other lvlibs also Actors? Like the File IO? If so, they all needs to be included.