QMAKE: export created .lib file?
-
Are you still trying to shoehorn the qmake build artifacts into the directory structure your school asks you to use?
Why don't you run qmake in some temporary directory and let it do its own thing there? It assumes that where it puts its files is an implementation detail. After building you can do a "make install" to actually put the files where you need them. You got way more control over the make install step than over the make one. Qmake is actually made to have the places where files get installed to configured;-)
In Qt Creator the Projects->Run Settings->Deploy Steps are the best place to add a make install step.