vote up 0 vote down star

Hello,

I am using qt and developing a desktop app that will run under win xp/vista.

I have a 3rd party library UserAgentLib (static, and shared). But I am not sure how to link in qt creator.

I have opened the *.pro file and added my library and header path. The library is called UserAgentLib and the header file is called UserAgentLib.h

TARGET = Dialer
TEMPLATE = app

LIBS += D:\Projects\qtDialer\tools\lib\UserAgentLib
INCLUDEPATH += D:\Projects\qtDialer\tools\inc

SOURCES += main.cpp\
        catdialer.cpp

HEADERS  += catdialer.h

FORMS    += catdialer.ui

I think it does find the header file, as I get about 100 errors for declarations in the UserAgentLib.h file. However, I don't think it is linking with the library.

Many thanks for any suggestions,

======================

I have create a very simple library in VS C++ 2008. Here is the code for the header and source file. Header:

// mathslibrary.hpp
int add_numbers(const int a, const int b);

Source:

// mathslibrary.cpp
#include "mathslibrary.hpp"
int add_numbers(const int a, const int b)
{
return a + b;
}

I have compiled this into a library. And tested by linking with a WIN32 console application in VS 2008. The library worked as expected.

Now when I try and link with qt.

#include <QtCore/QCoreApplication>
#include <iostream>
#include "mathslibrary.hpp"
int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);
    std::cout << "add numbers 40 + 60 = " << add_numbers(40, 60) << std::endl;
    return a.exec();
}

This is my qmake file:

QT       -= gui
TARGET = testlibrary
CONFIG   += console
CONFIG   -= app_bundle
TEMPLATE = app
LIBS = D:\Projects\TestLibrary\mathsLibrary\Debug\mathsLibrary.lib
INCLUDEPATH = D:\Projects\TestLibrary\mathsLibrary\
SOURCES += main.cpp

These are the errors I get when I try and build:

c:/Qt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../libmingw32.a(main.o):main.c::-1: error: undefined reference to `WinMain@16'

:-1: error: collect2: ld returned 1 exit status

And these are the compile issues:

Running build steps for project testlibrary...

Creating gdb macros library...

Configuration unchanged, skipping QMake step.

Starting: C:/Qt/mingw/bin/mingw32-make.exe debug -w

mingw32-make: Entering directory `D:/Projects/TestQTLibrary/testlibrary'

C:/Qt/mingw/bin/mingw32-make -f Makefile.Debug mingw32-make[1]: Entering directory `D:/Projects/TestQTLibrary/testlibrary'

g++ -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc -Wl,-subsystem,console -mthreads -Wl -o debug\testlibrary.exe -L"c:\Qt\qt\lib"

D:\Projects\TestLibrary\mathsLibrary\Debug\mathsLibrary.lib -lQtCored4 mingw32-make[1]: Leaving directory `D:/Projects/TestQTLibrary/testlibrary'

mingw32-make: Leaving directory `D:/Projects/TestQTLibrary/testlibrary'

c:/Qt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../libmingw32.a(main.o):main.c:

(.text+0x104): undefined reference to `WinMain@16' collect2: ld returned 1 exit status mingw32-make[1]: * [debug\testlibrary.exe] Error 1 mingw32-make: * [debug] Error 2 Exited with code 2. Error while building project testlibrary When executing build step 'Make'

Many thanks for any advice,

flag

60% accept rate

3 Answers

vote up 1 vote down

Try this with the simple library first and then try it with the library you are actually trying to get working.

 LIBS += D:\Projects\qtDialer\tools\lib\mathsLibrary.lib

In your .hpp file, add extern "C" before your function declarations:

// mathslibrary.hpp
extern "C" int add_numbers(const int a, const int b);

Rebuild the library from Visual Studio.

Now you should be able to compile your test app with Qt Creater. Then copy the corresponding dll into the directory with your new executable and give it a run.

link|flag
Hello, I have tried both for dll and lib by adding the extension. LIBS += D:\Projects\qtDialer\tools\lib\UserAgentLib.lib LIBS += D:\Projects\qtDialer\tools\lib\UserAgentLib.dll The library was compiled with WIN32 visual studio 2005. Would that make any difference? Thanks for any advice – robUK Mar 16 at 16:17
I don't use visual studio but you should use the full name of the library file that visual studio generated. I was only suggesting those extensions as possibilities. – Arnold Spence Mar 16 at 21:24
One other thing you might try.. qmake really prefers forward slashes. If you have to use backslashes, double them up like this '\\'. – Arnold Spence Mar 17 at 13:05
Hello. I think I know what the problem might be. I have tested with a library I have written in native visual C++ 2008. And linked it with a console app also created in visual C++ 2008. However, the library doesn't work for qt. I think I need to be compiling qt app in visual studio compiler. – robUK Mar 17 at 15:41
I think I am compiling my apps in qt in g++ MinGW/QT. However, I am not sure how to change to VC++ as my library is compiled in that. I have been to the 'qt command prompt' And I can see on the first line. 'Setting up a MinGW/Qt only environment...' How can I change my compiler? Many thanks, – robUK Mar 17 at 15:47
show 17 more comments
vote up 0 vote down

If you are getting compiler errors then your UserAgentLib.h probably didn't get included. You can test it with:

!exists( UserAgentLib.h ) {
 error( "No UserAgentLib.h file found" )
}

You put the above in one of the .pro file and not the constructor.See this.

If the library didn't get linked (which is after your application has compiled well) -- then you need to tinker with your LIBS += ... line, though which appears fine on first glance.

link|flag
Hello, I have entered the code into the constructor. However, the program won't run because of the compile errors. Maybe its my library. The library was compiled with VS 2005. – robUK Mar 15 at 12:51
vote up 0 vote down

Don't know if this changes anything, but maybe you have to define it like this:

LIBS += -LD:/Projects/qtDialer/tools/lib -lUserAgentLib
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.