2

i need to communicate with a serial RS232 device using a GUI in Qt....i downloaded the latest code from code google......but donno what to do next...initialy i did (i dont remember which version of qextserial it was) but it had a .pri file which i just included in my .pro file...this website......but now there is no .pri file in the downloaded code..

include(qextserialport/src/qextserialport.pri)

Please help me any one who have integrated this feature to Qt Creator...thanx in advance

rotating_image
  • 3,046
  • 4
  • 28
  • 46
  • Which version did you download? 1.2 beta or 1.2 RC? – Louis93 Aug 29 '12 at 15:31
  • Here's a list of releases, I suggest downloading the one released on March 18th http://code.google.com/p/qextserialport/downloads/list?can=1&q= – Louis93 Aug 29 '12 at 15:33
  • To be safe (even though this is crappy coding), use the full path in your include in the PRO like so: `include(C:/rotating_image/QExtSerialPort/src/qextserialport.pri)` – Louis93 Aug 29 '12 at 15:36
  • @Louis93 1.2 win-alpha2 [here...](http://code.google.com/p/qextserialport/downloads/detail?name=qextserialport.1.2win-alpha2.zip&can=1&q=) – rotating_image Aug 29 '12 at 16:16

1 Answers1

0

Yep you're using the 1.2 Alpha version which does not have a PRI include file, using the recommended version found here or any version after the 1.2 Alpha will have a PRI include fine and should work fine.

Louis93
  • 3,843
  • 8
  • 48
  • 94