Hi all,
i have a technical question about including some files into an executable project.
I explain :
i have a workspace which includes 2 projects.
The project 1 is creating a dll (thanks to several classes)
The project 2 is creating an .exe file : this soft is running if he get the dll in his path only.
I’m a newbie in Qt from now, that’s why i would be helped. That is my .pro file :
TEMPLATE = app
CONFIG(debug, debug|release) {
TARGET = QMLEditord
} else {
TARGET = QMLEditor
}
.
.
.
win32:CONFIG(release, debug|release): LIBS += D:/acasini/hmi_workbench/libDeclarativeScriptParser/release/libDeclarativeScriptParser.dll
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../libDeclarativeScriptParser/debug/ -llibDeclarativeScriptParser
else:symbian: LIBS += -llibDeclarativeScriptParser
else:unix: LIBS += -L$$OUT_PWD/../libDeclarativeScriptParser/ -llibDeclarativeScriptParser
INCLUDEPATH += $$PWD/../libDeclarativeScriptParser
DEPENDPATH += $$PWD/../libDeclarativeScriptParser
All what i would like doing is running my .exe without the same error message : “XxXxX.dll is missing”
Thanks for your help :)
regards
↧