Page 1 of 2 12 LastLast
Results 1 to 20 of 30

Thread: linking libraries

  1. #1
    Join Date
    Mar 2006
    Posts
    15
    Thanks
    3
    Qt products
    Qt3
    Platforms
    Unix/X11

    Default linking libraries

    Hi,

    I've used Qt for two days now, as I need it to make my final project (exam).

    I am trying to link a library called "Vortex" to my Qt-project.

    First I generate the Makefile;

    qmake -o Makefile client

    I've appended 'pkg-config vortex --cflags' to CFLAGS and CXXFLAGS in the Makefile;

    CFLAGS = <previous flags>... 'pkg-config vortex --cflags'
    CXXFLAGS = <previous flags>... 'pkg-config vortex --cflags'


    and also added 'pkg-config vortex --libs' to the Makefile, in the LIBS section;

    LIBS = <previous libs>... 'pkg-config vortex --libs'

    Then I try to compile the code with "make".
    This only results in an error message;

    undefined reference to 'vortex_init()'

    (vortex_init() is a function to initialize the Vortex library)

    I have used #include <vortex.h> in source-file, client.cpp.




    Am I perhaps linking the library the wrong way?

  2. #2
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: linking libraries

    You should probably implement vortex_init() function yourself. Or is it contained in the library? Do you get other unresolved symbols too or is it the only one?

  3. #3
    Join Date
    Mar 2006
    Posts
    15
    Thanks
    3
    Qt products
    Qt3
    Platforms
    Unix/X11

    Default Re: linking libraries

    this is the only error, but it is also the only function I have in client.cpp for now.

    /usr/local/include/vortex.h contains

    gboolean vortex_init ();

    I don't really know how to implement this function in my client.cpp file..

    Thanks for the answer!


    output from compiler when running "make"

    Qt Code:
    1. g++ -c -pipe -Wall -W -O2 -D_REENTRANT -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -DQT_SHARED -DQT_TABLET_SUPPORT `pkg-config vortex --cflags` -I/usr/share/qt3/mkspecs/default -I. -I/usr/include/qt3 -I.ui/ -I.moc/ -o .obj/client.o client.cpp
    2. /usr/include/qt3/private/qucom_p.h:69: warning: ‘struct QUBuffer’ has virtual functions but non-virtual destructor
    3. /usr/include/qt3/private/qucom_p.h:77: warning: ‘struct QUType’ has virtual functions but non-virtual destructor
    4. /usr/include/qt3/private/qucom_p.h:104: warning: ‘struct QUType_Null’ has virtual functions but non-virtual destructor
    5. /usr/include/qt3/private/qucom_p.h:287: warning: ‘struct QUType_enum’ has virtual functions but non-virtual destructor
    6. /usr/include/qt3/private/qucom_p.h:307: warning: ‘struct QUType_ptr’ has virtual functions but non-virtual destructor
    7. /usr/include/qt3/private/qucom_p.h:326: warning: ‘struct QUType_iface’ has virtual functions but non-virtual destructor
    8. /usr/include/qt3/private/qucom_p.h:345: warning: ‘struct QUType_idisp’ has virtual functions but non-virtual destructor
    9. /usr/include/qt3/private/qucom_p.h:364: warning: ‘struct QUType_bool’ has virtual functions but non-virtual destructor
    10. /usr/include/qt3/private/qucom_p.h:383: warning: ‘struct QUType_int’ has virtual functions but non-virtual destructor
    11. /usr/include/qt3/private/qucom_p.h:403: warning: ‘struct QUType_double’ has virtual functions but non-virtual destructor
    12. /usr/include/qt3/private/qucom_p.h:423: warning: ‘struct QUType_charstar’ has virtual functions but non-virtual destructor
    13. /usr/include/qt3/private/qucom_p.h:444: warning: ‘struct QUType_QString’ has virtual functions but non-virtual destructor
    14. /usr/include/qt3/private/qucomextra_p.h:65: warning: ‘struct QUType_QVariant’ has virtual functions but non-virtual destructor
    15. /usr/include/qt3/private/qucomextra_p.h:87: warning: ‘struct QUType_varptr’ has virtual functions but non-virtual destructor
    16. g++ -o client .obj/client.o -L/usr/share/qt3/lib -L/usr/X11R6/lib -lqt-mt -lXext -lX11 -lm -lpthread `pkg-config vortex --libs`
    17. .obj/client.o: In function `main':
    18. client.cpp:(.text+0x2a6): undefined reference to `vortex_init()'
    19. collect2: ld returned 1 exit status
    20. make: *** [client] Error 1
    To copy to clipboard, switch view to plain text mode 



    this is what I would need to run in order to get client.o compiled the right way:

    Qt Code:
    1. g++ -c -pipe -Wall -W -O2 -D_REENTRANT -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -DQT_SHARED -DQT_TABLET_SUPPORT `pkg-config --libs vortex --cflags` -I/usr/share/qt3/mkspecs/default -I. -I/usr/include/qt3 -I.ui/ -I.moc/ -o .obj/client.o client.cpp
    To copy to clipboard, switch view to plain text mode 

    but that only generates more error messages;
    Qt Code:
    1. g++: -lvortex: linker input file unused because linking not done
    2. g++: -lgthread-2.0: linker input file unused because linking not done
    3. g++: -lxml2: linker input file unused because linking not done
    4. g++: -lz: linker input file unused because linking not done
    5. g++: -lm: linker input file unused because linking not done
    6. g++: -lglib-2.0: linker input file unused because linking not done
    To copy to clipboard, switch view to plain text mode 
    Last edited by JustaStudent; 24th March 2006 at 14:51.

  4. #4
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: linking libraries

    Have you used that library before? Isn't there some reference which tells you what needs to be done to use it?

  5. #5
    Join Date
    Mar 2006
    Posts
    15
    Thanks
    3
    Qt products
    Qt3
    Platforms
    Unix/X11

    Default Re: linking libraries

    yup, have used it before in an application not invloving Qt. That application works just fine to compile with the instructions given at;

    http://www.aspl.es/fact/files/af-arc...ml#using_linux

    i.e. compile the source file with

    Qt Code:
    1. gcc `pkg-config --cflags --libs vortex` your-program.c -o your-program
    To copy to clipboard, switch view to plain text mode 

    I think the problem may have something to do with the fact that Qt firstly compile my client.cpp to .obj/client.o and secondly compile the .o file;
    Qt Code:
    1. g++ <FLAGS..> -o .obj/client.o client.cpp
    2.  
    3. g++ -o client .obj/client.o <FLAGS...>
    To copy to clipboard, switch view to plain text mode 

  6. #6
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    5,372
    Thanks
    28
    Thanked 976 Times in 912 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: linking libraries

    From Qt Designer docs:
    For example, qmake can configure the build process to take advantage of external libraries that are supported by pkg-config, such as the D-BUS and ogg libraries, with the following lines:
    CONFIG += link_pkgconfig
    PKGCONFIG += ogg dbus-1
    More information about features can be found in the Adding New Configuration Features section of the qmake Advanced Usage chapter.

  7. #7
    Join Date
    Mar 2006
    Posts
    15
    Thanks
    3
    Qt products
    Qt3
    Platforms
    Unix/X11

    Default Re: linking libraries

    That solution is for Qt 4.x, and I'm using Qt 3.3.4. (I found it in the 4.x manual, but not in the 3.3 manual)

    http://doc.trolltech.com/4.0/qmake-p...ation-features

    I tried to use this solution in my Qt 3.3.4, but qmake just ignores it, and makes the Makefile as it would be without

    CONFIG += link_pkgconfig
    PKGCONFIG += vortex

    (I added the lines above to client.pro, then run qmake -o Makefile client)

    Perhaps an upgrade to 4.x will do it then. I will try to install it and try this out! I'll post comments about this later.

  8. #8
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: linking libraries

    Could you show us what parameters get passed to the compiler in the linking stage?

  9. #9
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    5,372
    Thanks
    28
    Thanked 976 Times in 912 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: linking libraries

    Quote Originally Posted by JustaStudent
    That solution is for Qt 4.x, and I'm using Qt 3.3.4. (I found it in the 4.x manual, but not in the 3.3 manual)
    Here's the contents of $QTDIR/mkspecs/features/link_pkgconfig.prf file from Qt4:
    # handle pkg-config files
    for(PKGCONFIG_LIB, $$list($$unique(PKGCONFIG))) {
    QMAKE_CXXFLAGS += $$system(pkg-config --cflags $$PKGCONFIG_LIB)
    LIBS += $$system(pkg-config --libs $$PKGCONFIG_LIB)
    }
    It should work with Qt3 also.

  10. #10
    Join Date
    Mar 2006
    Posts
    15
    Thanks
    3
    Qt products
    Qt3
    Platforms
    Unix/X11

    Default Re: linking libraries

    jacek, this solution works also for Qt 3.3.4. (with a little modification)

    I edit /usr/share/qt3/mkspecs/default/qmake.conf (after making backup) and the lines

    QMAKE_CFLAGS = -pipe

    to

    QMAKE_CFLAGS = -pipe `pkg-config vortex --cflags`


    and

    QMAKE_LIBS =

    to

    QMAKE_LIBS =`pkg-config vortex --libs`


    save it, run qmake -o Makefile client again, and then make.

    but still I get the same error message:

    Qt Code:
    1. g++ -o client .obj/client.o -L/usr/share/qt3/lib -L/usr/X11R6/lib `pkg-config vortex --libs` -lqt-mt -lXext -lX11 -lm -lpthread
    2. .obj/client.o: In function `main':
    3. client.cpp:(.text+0x2a6): undefined reference to `vortex_init()'
    4. collect2: ld returned 1 exit status
    5. make: *** [client] Error 1
    To copy to clipboard, switch view to plain text mode 

    wysota, what do you mean with 'parameters passed to the compiler in the linking stage'?
    After above error, it stops compiling..
    Last edited by JustaStudent; 25th March 2006 at 15:50.

  11. #11
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: linking libraries

    What does pkg-config vortex --libs return?

  12. #12
    Join Date
    Mar 2006
    Posts
    15
    Thanks
    3
    Qt products
    Qt3
    Platforms
    Unix/X11

    Default Re: linking libraries

    pkg-config vortex --libs
    -pthread -L/usr/local/lib -lvortex -lgthread-2.0 -lxml2 -lz -lm -lglib-2.0

    pkg-config vortex --cflags
    -pthread -I/usr/local/include/vortex -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2


    I'll wait with the install of Qt 4.1.1 until I know for sure it won't mess up my current configuration.
    Last edited by JustaStudent; 25th March 2006 at 16:22.

  13. #13
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    5,372
    Thanks
    28
    Thanked 976 Times in 912 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: linking libraries

    Quote Originally Posted by JustaStudent
    I edit /usr/share/qt3/mkspecs/default/qmake.conf (after making backup) and the lines
    It would be better if you would add:
    Qt Code:
    1. QMAKE_CXXFLAGS += $$system(pkg-config --cflags vortex)
    2. LIBS += $$system(pkg-config --libs vortex)
    To copy to clipboard, switch view to plain text mode 
    to your .pro file.

  14. #14
    Join Date
    Mar 2006
    Posts
    15
    Thanks
    3
    Qt products
    Qt3
    Platforms
    Unix/X11

    Default Re: linking libraries

    ok I restored my qmake.conf file and added

    QMAKE_CXXFLAGS += $$system(pkg-config --cflags vortex)
    LIBS += $$system(pkg-config --libs vortex)

    to my .pro file

    but still I get the same error message "undefined reference to vortex_init()"

    Any ideas?

  15. #15
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    5,372
    Thanks
    28
    Thanked 976 Times in 912 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: linking libraries

    Have you run "make clean && qmake && make" after all these changes?

  16. #16
    Join Date
    Mar 2006
    Posts
    15
    Thanks
    3
    Qt products
    Qt3
    Platforms
    Unix/X11

    Default Re: linking libraries

    > more dummy.cpp

    Qt Code:
    1. #include <qapplication.h>
    2. #include <vortex.h>
    3.  
    4. int main( )
    5. {
    6. vortex_init();
    7. }
    To copy to clipboard, switch view to plain text mode 

    > more dummy.pro

    Qt Code:
    1. TEMPLATE = app
    2. LANGUAGE = C++
    3.  
    4. CONFIG += qt warn_on release
    5.  
    6. SOURCES += dummy.cpp
    7.  
    8. FORMS = form1.ui
    9.  
    10. QMAKE_CXXFLAGS += $$system(pkg-config --cflags vortex)
    11. LIBS += $$system(pkg-config --libs vortex)
    12.  
    13. unix {
    14. UI_DIR = .ui
    15. MOC_DIR = .moc
    16. OBJECTS_DIR = .obj
    17. }
    To copy to clipboard, switch view to plain text mode 

    > make clean && qmake && make

    Qt Code:
    1. rm -f .obj/moc_form1.o
    2. rm -f .moc/moc_form1.cpp
    3. rm -f .ui/form1.cpp .ui/form1.h
    4. rm -f .obj/dummy.o .obj/form1.o
    5. rm -f *~ core *.core
    6. /usr/share/qt3/bin/uic form1.ui -o .ui/form1.h
    7. g++ -c -pipe -pthread -I/usr/local/include/vortex -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -Wall -W -O2 -D_REENTRANT -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -DQT_SHARED -DQT_TABLET_SUPPORT -I/usr/share/qt3/mkspecs/default -I. -I/usr/include/qt3 -I.ui/ -I. -I.moc/ -o .obj/dummy.o dummy.cpp
    8. /usr/share/qt3/bin/uic form1.ui -i form1.h -o .ui/form1.cpp
    9. g++ -c -pipe -pthread -I/usr/local/include/vortex -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -Wall -W -O2 -D_REENTRANT -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -DQT_SHARED -DQT_TABLET_SUPPORT -I/usr/share/qt3/mkspecs/default -I. -I/usr/include/qt3 -I.ui/ -I. -I.moc/ -o .obj/form1.o .ui/form1.cpp
    10. /usr/include/qt3/qtooltip.h:86: warning: ‘class QToolTip’ has virtual functions but non-virtual destructor
    11. /usr/share/qt3/bin/moc .ui/form1.h -o .moc/moc_form1.cpp
    12. g++ -c -pipe -pthread -I/usr/local/include/vortex -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -Wall -W -O2 -D_REENTRANT -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -DQT_SHARED -DQT_TABLET_SUPPORT -I/usr/share/qt3/mkspecs/default -I. -I/usr/include/qt3 -I.ui/ -I. -I.moc/ -o .obj/moc_form1.o .moc/moc_form1.cpp
    13. /usr/include/qt3/private/qucom_p.h:69: warning: ‘struct QUBuffer’ has virtual functions but non-virtual destructor
    14. /usr/include/qt3/private/qucom_p.h:77: warning: ‘struct QUType’ has virtual functions but non-virtual destructor
    15. /usr/include/qt3/private/qucom_p.h:104: warning: ‘struct QUType_Null’ has virtual functions but non-virtual destructor
    16. /usr/include/qt3/private/qucom_p.h:287: warning: ‘struct QUType_enum’ has virtual functions but non-virtual destructor
    17. /usr/include/qt3/private/qucom_p.h:307: warning: ‘struct QUType_ptr’ has virtual functions but non-virtual destructor
    18. /usr/include/qt3/private/qucom_p.h:326: warning: ‘struct QUType_iface’ has virtual functions but non-virtual destructor
    19. /usr/include/qt3/private/qucom_p.h:345: warning: ‘struct QUType_idisp’ has virtual functions but non-virtual destructor
    20. /usr/include/qt3/private/qucom_p.h:364: warning: ‘struct QUType_bool’ has virtual functions but non-virtual destructor
    21. /usr/include/qt3/private/qucom_p.h:383: warning: ‘struct QUType_int’ has virtual functions but non-virtual destructor
    22. /usr/include/qt3/private/qucom_p.h:403: warning: ‘struct QUType_double’ has virtual functions but non-virtual destructor
    23. /usr/include/qt3/private/qucom_p.h:423: warning: ‘struct QUType_charstar’ has virtual functions but non-virtual destructor
    24. /usr/include/qt3/private/qucom_p.h:444: warning: ‘struct QUType_QString’ has virtual functions but non-virtual destructor
    25. /usr/include/qt3/private/qucomextra_p.h:65: warning: ‘struct QUType_QVariant’ has virtual functions but non-virtual destructor
    26. /usr/include/qt3/private/qucomextra_p.h:87: warning: ‘struct QUType_varptr’ has virtual functions but non-virtual destructor
    27. g++ -o dummy .obj/dummy.o .obj/form1.o .obj/moc_form1.o -L/usr/share/qt3/lib -L/usr/X11R6/lib -pthread -L/usr/local/lib -lvortex -lgthread-2.0 -lxml2 -lz -lglib-2.0 -lqt-mt -lXext -lX11 -lm -lpthread
    28. .obj/dummy.o: In function `main':
    29. dummy.cpp:(.text+0xd): undefined reference to `vortex_init()'
    30. collect2: ld returned 1 exit status
    31. make: *** [dummy] Error 1
    To copy to clipboard, switch view to plain text mode 

  17. #17
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    5,372
    Thanks
    28
    Thanked 976 Times in 912 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: linking libraries

    Does it link when you remove #include <qapplication.h> and change:
    Qt Code:
    1. CONFIG += qt warn_on release
    To copy to clipboard, switch view to plain text mode 
    to
    Qt Code:
    1. CONFIG += warn_on release
    2. CONFIG -= qt
    To copy to clipboard, switch view to plain text mode 
    ?

  18. The following user says thank you to jacek for this useful post:

    JustaStudent (25th March 2006)

  19. #18
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: linking libraries

    Qt Code:
    1. // main.cpp
    2. #include <vortex.h>
    3.  
    4. void main( ){
    5. vortex_init();
    6. }
    To copy to clipboard, switch view to plain text mode 

    Qt Code:
    1. g++ main.cpp `pkg-config vortex --cflags --libs` -o test
    To copy to clipboard, switch view to plain text mode 

    Does this compile?

  20. The following user says thank you to wysota for this useful post:

    JustaStudent (25th March 2006)

  21. #19
    Join Date
    Mar 2006
    Posts
    15
    Thanks
    3
    Qt products
    Qt3
    Platforms
    Unix/X11

    Red face Re: linking libraries (problem solved. fault; library was c, I compiled c++)

    I found the problem! It is my bad actually, the Vortex library is a C library, not a C++ library.
    So,

    I changed the name of dummy.cpp to dummy.c,
    I changed CXXFLAGS to CFLAGS in dummy.pro as below, then run

    make clean && qmake && make.

    Code compiled! I feel stupid that I did not realise this earlier!
    Thank you for the troubleshooting!

    > more dummy.c

    Qt Code:
    1. #include <vortex.h>
    2.  
    3. int main( )
    4. {
    5. vortex_init();
    6. }
    To copy to clipboard, switch view to plain text mode 

    > more dummy.pro

    Qt Code:
    1. TEMPLATE = app
    2. LANGUAGE = C++
    3.  
    4. CONFIG += qt warn_on release
    5.  
    6. SOURCES += dummy.c
    7.  
    8. LIBS += $$system(pkg-config --libs vortex)
    9.  
    10. QMAKE_CFLAGS += $$system(pkg-config --cflags vortex)
    11.  
    12. unix {
    13. UI_DIR = .ui
    14. MOC_DIR = .moc
    15. OBJECTS_DIR = .obj
    16. }
    To copy to clipboard, switch view to plain text mode 

    > make clean && qmake && make

    Qt Code:
    1. qmake -o Makefile dummy.pro
    2. rm -f .obj/dummy.o
    3. rm -f *~ core *.core
    4. gcc -c -pipe -pthread -I/usr/local/include/vortex -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -Wall -W -O2 -D_REENTRANT -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -DQT_SHARED -DQT_TABLET_SUPPORT -I/usr/share/qt3/mkspecs/default -I. -I/usr/include/qt3 -I.ui/ -I.moc/ -o .obj/dummy.o dummy.c
    5. dummy.c: In function ‘main’:
    6. dummy.c:6: warning: control reaches end of non-void function
    7. g++ -o dummy .obj/dummy.o -L/usr/share/qt3/lib -L/usr/X11R6/lib -pthread -L/usr/local/lib -lvortex -lgthread-2.0 -lxml2 -lz -lglib-2.0 -lqt-mt -lXext -lX11 -lm -lpthread
    To copy to clipboard, switch view to plain text mode 

  22. #20
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    5,372
    Thanks
    28
    Thanked 976 Times in 912 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: linking libraries (problem solved. fault; library was c, I compiled c++)

    Quote Originally Posted by JustaStudent
    I found the problem! It is my bad actually, the Vortex library is a C library, not a C++ library.
    Then you should use Vortex headers like this:
    Qt Code:
    1. extern "C" {
    2. #include <vortex.h>
    3. };
    To copy to clipboard, switch view to plain text mode 
    Athough it's strange that Vortex authors didn't take care of it.

Similar Threads

  1. Link errors when linking chained libraries on windows
    By darkadept in forum Qt Programming
    Replies: 5
    Last Post: 26th May 2008, 14:52
  2. problem with order of libs during linking
    By minimax in forum Qt Programming
    Replies: 2
    Last Post: 8th January 2008, 10:32
  3. Qt 3.3 libraries
    By ToddAtWSU in forum Qt Programming
    Replies: 1
    Last Post: 21st December 2006, 17:25
  4. I got two problems when I used static compiled library of QT4
    By qintm in forum Installation and Deployment
    Replies: 8
    Last Post: 20th April 2006, 08:52
  5. Replies: 4
    Last Post: 7th March 2006, 08:52

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.