summaryrefslogtreecommitdiff
path: root/qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2022-01-19 14:45:00 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2022-01-19 14:35:20 +0000
commit657cef6109799963613c5a91aaea89e38ac29181 (patch)
treef4172ec94cde08159cbc73c61bdaf3b9a8373375 /qbs
parent44cc45e0007c48a0d30722839b6a9394b320e87a (diff)
downloadqt-creator-657cef6109799963613c5a91aaea89e38ac29181.tar.gz
Fix qbs build
Amends 704f239b55. Change-Id: I18a0c52850340a8ed73fe236b6304102f631e370 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'qbs')
-rw-r--r--qbs/modules/sqlite_sources/sqlite-sources.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/qbs/modules/sqlite_sources/sqlite-sources.qbs b/qbs/modules/sqlite_sources/sqlite-sources.qbs
index 67e547bbeb..392b7c0824 100644
--- a/qbs/modules/sqlite_sources/sqlite-sources.qbs
+++ b/qbs/modules/sqlite_sources/sqlite-sources.qbs
@@ -9,7 +9,7 @@ Module {
Depends { name: "cpp" }
cpp.defines: {
- var defines = ["_HAVE_SQLITE_CONFIG_H", "SQLITE_CORE"];
+ var defines = ["SQLITE_CUSTOM_INCLUDE=config.h", "SQLITE_CORE"];
if (buildSharedLib)
defines.push("BUILD_SQLITE_LIBRARY");
else