Answer the question
In order to leave comments, you need to log in
What is the correct way to transfer a C++ dll project from MS Visual Studio to Qt Creator?
I have a dll project written in a studio in pure C ++, I actually needed to integrate some Qt features into it, and for this it was decided to finally migrate the project to Qt creator, in order to continue development from there.
To begin with, I simply transferred the sources to a separate folder and created a .pro file from them, adding to it:
TEMPLATE = lib
TARGET = LogonProvider
DEFINES -= UNICODE
DEFINES += LogonProvider_LIBRARY
CONFIG += libs dll
+= -lsecur32 -ladvapi32 -luser32 -lole32 -lshlwapi
#<...> Source list here
Answer the question
In order to leave comments, you need to log in
Does the studio have static linking? Although with the dynamics of LoadLibrary it should already break off ...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question