qca/unittest/fixpaths.include
Brad Hards 3b58d170b4 Start of big reorganisation of the unit tests.
This now requires QTestLib, as provided with 
Qt 4.1

svn path=/trunk/kdesupport/qca/; revision=478231
2005-11-06 09:25:56 +00:00

16 lines
581 B
Plaintext

// This is some boilerplate to ensure that we can load
// plugins from (a slightly hacked) build directory
//
// It is intended that this be #include'd from an init
// routine of some kind.
QStringList libpaths = QCoreApplication::libraryPaths();
// we prepend, because we prefer the uninstalled version
libpaths.prepend(QString("../../plugins/qca-openssl"));
libpaths.prepend(QString("../../plugins/qca-botan"));
libpaths.prepend(QString("../../plugins/qca-gcrypt"));
// you can add more paths here...
QCoreApplication::setLibraryPaths(libpaths);