summaryrefslogtreecommitdiffstats
path: root/common.pri
Commit message (Collapse)AuthorAgeFilesLines
* Remove the need for application to set an RPATH.Jocelyn Turcotte2013-11-181-8/+0
| | | | | | | | | | | | | The WebEngineWidgets module and the WebEngine QtQuick plugin libraries already have the RPATH set properly in their headers and the application won't need to link any symbol directly to the Core library. Remove the RPATH directive for examples and tests and fix the build issue by making sure that the link directive isn't passed to dependencies through the prl or pkgconfig file. Change-Id: Id1f5efb8c9823613e804e8e6356d711d561d72ec Reviewed-by: Andras Becsi <andras.becsi@digia.com>
* Fix the build on Mac with debug_and_release QtAndras Becsi2013-08-301-0/+2
| | | | | | | | | | | | | | Remove the build_all option on Mac for now to prevent building both debug and release libraries in the same run since it causes linking issues with framework builds of Qt because of the platform suffix of debug libraries. Eventually the build system should be adapted to Mac specific configurations. Create unix binaries instead of app bundles to ease testing since currently the examples need DYLD_LIBRARY_PATH to run. Change-Id: I7fe3a7e6963510fb5a8863d9e68df487c168ff20 Reviewed-by: Zeno Albisser <zeno.albisser@digia.com>
* Detach common.pri from the nano browser examples.Jocelyn Turcotte2013-08-191-0/+6
Move common.pri to the root directory to be able to use it with tests. Remove nano browser specific logic (util.h include and common resources) from this file and use relative paths in the examples instead. This also remove unnecessary directives: - lib doesn't have to be added to INCLUDEPATH since proper modules are used - util.h doesn't need to be added to HEADERS, moc doesn't need to go through it - MOC_DIR doesn't have to be adjusted anymore Change-Id: Id706e7f2ef7c9607bdcd0ba63afecf5b5854262b Reviewed-by: Pierre Rossi <pierre.rossi@gmail.com>