J'essaie d'utiliser qscintilla sur Mac OS X, j'ajoutédyld: Bibliothèque non chargé: libqscintilla2.5.dylib
LIBS += -lqscintilla2
dans le .pro, avec ce code assez simple:
#include <QApplication>
#include <Qsci/qsciscintilla.h>
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
QsciScintilla *qscintilla = new QsciScintilla;
qscintilla->show();
return app.exec();
}
(Im en utilisant QtCreator BTW)
Voici l'erreur:
dyld: Library not loaded: libqscintilla2.5.dylib
Referenced from: /Users/lubethan/cxx-proj/NightPad/NightPad.app/Contents/MacOS/NightPad
Reason: image not found
The program has unexpectedly finished.
+1 pour attirer l'attention sur le fait que ce problème vous mord vraiment au moment du déploiement. –