Qt 6.11 is out! See what's new in the release
blog
Need help on adding 3rd party library to my project file
-
My project was structured with all the
*.proand*.prifiles in oneprofolder, separated from the source.hand.cppfiles.build | pro | subproject1 | subproject1.pro | subproject2 | subproject2.pro | subproject3 | subproject3.pro subproject1 | xyz.h + xyz.cpp subproject2 | abc.h + abc.cpp subproject3 | efg.h + efg.cppI want to add this KDSingleApplication library to subproject1 so I can use it.
I figured that I should include the
KDSingleApplication.priin mysubproject1.pro, but then where do I put the library's source folder? And the source folder also has asrc.pro, do I break apart thepriandprofrom the library folder and put them into myprofolder like this?pro | subproject1 | kdsingleapplication | KDSingleApplication.pri pro | subproject1 | kdsingleapplication | src.proAnd also where should I output the build debug/release dll? I'm confused.