11-29-2020 05:33 AM
If I am using a packed library and create an executable with an installer the installer puts the packed library into a separate folder in the installation directory.
is there a way to build the packed library into the executable file so it isn’t visible as a separate file
i am nitpicking a little bit but I feel like this is just an extra thing to break on customer installations.
Solved! Go to Solution.
11-29-2020 06:00 PM
@Worle wrote:
If I am using a packed library and create an executable with an installer the installer puts the packed library into a separate folder in the installation directory.
is there a way to build the packed library into the executable file so it isn’t visible as a separate file
i am nitpicking a little bit but I feel like this is just an extra thing to break on customer installations.
Nope. What you are asking for is like embedding a DLL into an executable.
If you don't want the PPL there, then use the raw library you built the PPL from.
11-30-2020 03:13 AM
Thanks, I suspected that might be the case