Reputation: 641
I have two Visual Studio C++ projects - a dialog based application and a DLL. The DLL is used by the first application. I want to have the DLL statically linked with the first application to form one monolite executable file. Is it possible?
Upvotes: 0
Views: 31
Reputation: 10425
No, it is not possible to statically link a DLL into an exe. You can change the DLL project into a lib project and link the lib.
Upvotes: 2