Click here to Skip to main content
15,891,184 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

I build my project (exe) which use QT Framework with makefile under vc++ It works fine:
-----
Build : qmake & nmake
Rebuild : qmake -project & qmake & nmake
Output : Debug\QT_Test.exe
*****
Build : qmake & nmake release
Rebuild : qmake -project & qmake & nmake release
Output : Debug\QT_Test.exe
-----

Now I want to do the same thing but I want to have a dll in output.

How can I do? what do I need to change ?
Thank you
Posted

1 solution

I'd recommend creating a brand new project. The target for the project would be the DLL that you require. Add your existing source code files to the project and things should build. Someting to consider though is that typically EXEs and DLLs have different entry points and usually DLLs will export functions while EXEs will not. Without changes to your source files, accomplishing this may proove difficult. Good Luck. :)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900