0
votes
Using Win32 API in Qt OSE project
You could use win32 scopes in your .pro file;
win32:HEADERS+=mywinheader.h
or with .pri (pro include) files to compartmentalize it even more;
win32 …
1
vote
Adding external library into Qt Creator project
Remember to export the symbol in your library, then using it's header and lib file should work just fine;
ht …
