forked from qt-creator/qt-creator
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>
14 lines
261 B
QML
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
|
|
}
|
|
}
|