Skip to content

Commit a3ddcf9

Browse files
Merge branch 'Qt_6.7' of https://github.com/thecodemonkey86/qt_mysql_driver into Qt_6.7
2 parents 224fdb9 + d2b72f8 commit a3ddcf9

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CMakeLists.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44
cmake_minimum_required(VERSION 3.16)
55
if (NOT CMAKE_PROJECT_NAME STREQUAL "QtBase" AND NOT CMAKE_PROJECT_NAME STREQUAL "Qt")
66
include(.cmake.conf)
7+
# Store initial build type (if any is specified) to be read by
8+
# qt_internal_set_cmake_build_type().
9+
# See qt_internal_set_cmake_build_type() for details.
10+
if(DEFINED CACHE{CMAKE_BUILD_TYPE})
11+
set(__qt_internal_standalone_project_cmake_build_type_before_project_call
12+
"${CMAKE_BUILD_TYPE}")
13+
endif()
14+
715
project(QSQLiteDriverPlugins
816
VERSION "${QT_REPO_MODULE_VERSION}"
917
DESCRIPTION "Qt6 SQL driver plugins"

qtsqldrivers-config_p.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#define QT_FEATURE_sql_db2 -1
22

3-
#define QT_FEATURE_sql_ibase -1
3+
#define QT_FEATURE_sql_ibase 1
44

5-
#define QT_FEATURE_sql_mysql 1
5+
#define QT_FEATURE_sql_mysql -1
66

77
#define QT_FEATURE_sql_oci -1
88

0 commit comments

Comments
 (0)