[Solved] Switch Qt Creator project file from static to dynamic library?
-
I've got a project file that makes a static lib. If I want to switch it to creating a dynamic/shared lib, what steps would I need to take to do this properly? And, I suppose, for the other direction?
Sorry for the n00bish question, but I am a somewhat sporadic user of Qt Creator...
-
Hi,
In the project panel, Build Steps, qmake, additional arguments, you can add/remove "CONFIG += static"
Or you can add build configurations for the static/dynamic build with the additional CONFIG argument
Hope it helps