vcpkg removed future code

This commit is contained in:
silverqx
2024-04-22 16:58:24 +02:00
parent 5d30ab7445
commit 14be9678df

View File

@@ -24,12 +24,10 @@ vcpkg_check_features(
)
# Validate input feature options
if(TINYORM_BUILD_MYSQL_DRIVER AND
("sql-mysql" IN_LIST FEATURES OR "sql-psql" IN_LIST FEATURES OR "sql-sqlite" IN_LIST FEATURES)
if(TINYORM_BUILD_MYSQL_DRIVER AND "sql-mysql" IN_LIST FEATURES)
)
message(FATAL_ERROR "The build-mysql-driver and sql-mysql, sql-psql, sql-sqlite vcpkg features \
are mutually exclusive, linking against QtSql and TinyDrivers libraries simultaneously is not \
allowed.")
message(FATAL_ERROR "The build-mysql-driver and sql-mysql vcpkg features are mutually \
exclusive, linking against QtSql and TinyDrivers libraries simultaneously is not allowed.")
endif()
if(TINYORM_BUILD_MYSQL_DRIVER)