add project file for including accessibility plugin when building static binary. As there is no way to distinguish between static and dynamic builds you need to select the project file manually.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14432 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2007-08-22 20:51:36 +00:00
parent bef4c24f39
commit a3af8f1dce
2 changed files with 12 additions and 0 deletions

View file

@ -21,6 +21,10 @@
#include <QtGui>
#include "rbutilqt.h"
#ifdef STATIC
#include <QtPlugin>
Q_IMPORT_PLUGIN(qtaccessiblewidgets)
#endif
int main( int argc, char ** argv ) {
QApplication app( argc, argv );

View file

@ -0,0 +1,8 @@
# project file for building static binary
include(rbutilqt.pro)
QTPLUGIN += qtaccessiblewidgets
LIBS += -L$$(QT_BUILD_TREE)/plugins/accessible -lqtaccessiblewidgets
DEFINES += STATIC