Re: [CMake] fixup bundle vs Qy 5.5.1 and rpaths

2016-01-04 Thread Gregory Van Vooren
That solved my problem indeed. Thank you very much (and happy new year). Kind regards, Greg. > On 18 Dec 2015, at 16:15, clin...@elemtech.com wrote: > > > It appears you need to add the directory(ies) in the Qt installation > containing the Qt libraries to your DIRS. > > set( DIRS >

[CMake] fixup bundle vs Qy 5.5.1 and rpaths

2015-12-18 Thread Gregory Van Vooren
I have a project containing several applications (which are sub projects), each of which links against some Qt libraries which are built as dylibs, but are not part of the project. Qt libraries and headers are found using find-package which is working perfectly. I’m currently trying to switch

Re: [CMake] fixup bundle vs Qy 5.5.1 and rpaths

2015-12-18 Thread clinton
It appears you need to add the directory(ies) in the Qt installation containing the Qt libraries to your DIRS. set( DIRS ${APP}/Contents/plugins/platforms ${QT_BINARY_DIR} ${QT_LIBRARY_DIR} ) I think it should have been that way, even with Qt 5.3. Clint - On Dec 18, 2015, at 6:12