Yes Andre and Pritam I tried this and handling separetly the debug and release mode its working fine for both now. Thanks a lot for your help. Thanks Sujan
Kind regards, Sujan Dasmahapatra Project Leader, Aero Group CE - Aero Group Tel +91 80 66470248 Mob [email protected] LM Wind Power Blades lmwindpower.com Together we capture the wind to power a cleaner world This e-mail and any attachments are confidential. If you are not the named or intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Any unauthorized disclosure, use or storage is prohibited and might be unlawful. -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Andre Haupt Sent: Thursday, January 19, 2012 2:26 PM To: List for both Qwt users and developers Cc: [email protected] Subject: Re: [Interest] qwt debug version not working with Qt-4.8.0 On Thu, Jan 19, 2012 at 07:49:10AM +0100, Sujan Dasmahapatra wrote: > I need specify each time that which dll I want to link in the .pro file. If > build in debug mode I need to write > LIBS += -LC:/Qt/4.8.0_nonsql/src/3rdparty/qwt-5.2.1/lib -lqwtd5 > If I build in release mode then I need to change it to > LIBS += -LC:/Qt/4.8.0_nonsql/src/3rdparty/qwt-5.2.1/lib -lqwt5 > > Then its working. How can I specify the both same time and automatically it > should link the right dll. Any suggestion would be highly appreciated. Thanks > Sujan try this in your project file: CONFIG( debug, debug|release ) { LIBS += -LC:/Qt/4.8.0_nonsql/src/3rdparty/qwt-5.2.1/lib -lqwtd5 } else { LIBS += -LC:/Qt/4.8.0_nonsql/src/3rdparty/qwt-5.2.1/lib -lqwt5 } regards, Andre _______________________________________________ Interest mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/interest _______________________________________________ Interest mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/interest
