Hello,
I have created a shared library and an application that uses the shared library on Red Hat ES 4. I am now trying to port both the library and app over to Windows Xp. I can get hte library to compile into a .dll and the app to compile into a .exe, but when I try to run the app, I get:
The procedure entry point not be located X in the dynamic link library Y.
The X and Y depend on how I compile the app.
Here is my shared library .pro file:
QT += svg \
xml
TARGET = SimplifiedGraphicViewer
TEMPLATE = lib
DEFINES += SGV_LIBRARY
HEADERS += Header Files
SOURCES += Source Files
QT += svg \
xml
TARGET = SimplifiedGraphicViewer
TEMPLATE = lib
DEFINES += SGV_LIBRARY
HEADERS += Header Files
SOURCES += Source Files
To copy to clipboard, switch view to plain text mode
Here is my application .pro file:
QT += xml svg
FORMS += Window.ui
SOURCES += Source Files
HEADERS += Header Files
TEMPLATE = app
LIBS += -LC:\Shared_Lib -lSimplifiedGraphicViewer
QT += xml svg
FORMS += Window.ui
SOURCES += Source Files
HEADERS += Header Files
TEMPLATE = app
LIBS += -LC:\Shared_Lib -lSimplifiedGraphicViewer
To copy to clipboard, switch view to plain text mode
Thanks
Bookmarks