I want to build a Qt project that uses another Qt project. I have (barely, and with little help from the docs) got this working with the embedded project as a static library, but want to make it work with dynamic libraries.
I figured the first step would be changing the staticlib in the library project to be dll. That's got the library compiling and linking again, although until I get something using it I'm not sure it's really working.
I removed the output statlic library and ran qmake on the application project, and that seems to compile and link. The result won't run, apparently because it can't find the library. I'm not sure where the library should be within the bundle, though.
Ideally, I'd like for the application project to build an application with the dylib output by the library project copied into the appropriate place in the application bundle.
Any tips?
Bookmarks