Files
qt-creator/src/libs/sqlite/sqlite.qbs
Christian Kandeler 0861ba2fc9 sqlite: Fix qbs build
Exporting the full sqlite interface can lead to run-time conflicts with
the system sqlite that Qt's SQL support pulls in.
So re-build the sources for the unit test, as in the qmake build.

Change-Id: I8394b9c0aa4e21704bc84600f40b8f5d706ad66d
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
2020-06-16 12:43:00 +00:00

14 lines
261 B
QML

import qbs 1.0
QtcLibrary {
name: "Sqlite"
Depends { name: "sqlite_sources" }
property string exportedIncludeDir: sqlite_sources.includeDir
Export {
Depends { name: "cpp" }
cpp.includePaths: product.exportedIncludeDir
}
}