Hello everyone, I have a bit confused about how to write in the project file .pro for QtCreator to link a dynamic and static library. I use the MinGW compiler (making a Windows).
Suppose you have the following libraries:
1 - Dynamic: vettore.dll
2 - static: matrice.a
Suppose also that the two libraries are in the directory:
1 - C :/ dynamic dynamic library vettore.dll
2 - C :/ static for static library matrice.a
The project file is called test.pro. How should I write it for him to link the libraries to my program that do the test named main.cpp ?
Bookmarks