add a missing slash in path for release hydra support

This commit is contained in:
Stephen Birarda 2014-10-03 15:33:51 -07:00
parent 8cb258e14c
commit 2ce2c9e953

View file

@ -101,7 +101,7 @@ void SixenseManager::initialize() {
_sixenseLibrary = new QLibrary(SIXENSE_LIB_FILENAME);
#else
const QString SIXENSE_LIBRARY_NAME = "libsixense_x64";
QString frameworkSixenseLibrary = QCoreApplication::applicationDirPath() + "../Frameworks/"
QString frameworkSixenseLibrary = QCoreApplication::applicationDirPath() + "/../Frameworks/"
+ SIXENSE_LIBRARY_NAME;
_sixenseLibrary = new QLibrary(frameworkSixenseLibrary);