01-21-2005 06:54 AM
01-21-2005
08:14 AM
- last edited on
07-08-2025
09:21 AM
by
Content Cleaner
LabWIndows/CVI is an ANSI C compiler,so it won't be able to compile any C++ code. Any dll or executable you create will have a dependency on the CVI runtime engine, which it its smplest form is 2-3 dlls. If you really need to minimize dependencies and you're not using any UI features, then you can create an exe with the target settings set to "Intrument Driver only",which would mean you would only need to distribute the instrup.dll. If you use some UI featues, you will have to distribute some other dll's, the size of which comes to about 3 megs.
Users may also download the CVI runtime from here if you don't want to distribute the runtime files via email.
Most machines already have the MSVC runtime engine, which is why you don't need to install anything else if you create an executable with MSVC. So that runtime dependecy is still there, only most poeple don't see it.
I hope this helps. Let me know if you have any more questions.
01-21-2005 09:07 AM
01-21-2005 09:10 AM
01-23-2005 06:59 PM
01-26-2005 03:17 AM
01-26-2005 09:55 AM
01-27-2005 02:56 AM