C Board  

Go Back   C Board > Platform Specific Boards > Linux Programming

Reply
 
LinkBack Thread Tools Display Modes
Old 04-07-2003, 02:27 PM   #1
Quacker
Guest
 
Posts: n/a
Question QT and external libraries

My project group and I are trying to integrate QT Libraries with the ARIA libraries necessary for operation of an ActivMedia robot.
Initially we modified the qmake.conf file and placed the modified file in the working directory, having added the necessary library flags. Unfortunately, when we run qmake -project, qmake, make the Aria libraries still are not added into the compiler statements.

If anyone could provide help regarding including external libraries, like the ARIA ones, into a QT program, it would be very much appreciated.
  Reply With Quote
Old 04-08-2003, 07:02 AM   #2
Registered User
 
Join Date: Apr 2002
Posts: 95
If you placed the include (header lib)files in the /usr/bin/qtdir/include
then I found you have to add the following lines in your make file
QTDIR = /usr/bin/qtdir/include
regardless you will have to adjust your make file
if the include files are in a different directory try this
adding a variable pointing to the directory
ARIADIR=/usr/bin/aria (or whatever the path is)
then change the line
INCPATH = .......................
and add
this to it
INCPATH = -I$(ARIADIR)/include or just -I$(ARIADIR) if you included the full path

Hope that helps just a newbie myself so no guarantees.
rip1968 is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Forum Jump


All times are GMT -6. The time now is 12:05 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22