Reputation: 75
I have a c++ project developed in visual studio. The project which is currently .exe depends on external libs (xerces c++ and system C libraries). I now need to create a dll file (taking into account all the external libraries if possible).
Thanks guyz for your help
Upvotes: 6
Views: 9394
Reputation: 13690
You can change the Configuration Type
in the General
page of the project properties. Select Dynamic Library (.dll)
. The library projects can be consumed as before.
If you need to keep the .EXE project you have to make copy, of course.
Upvotes: 8