mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-16 18:39:23 +08:00
24 lines
860 B
Diff
24 lines
860 B
Diff
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||
|
index bb05cd8..6aff88b 100644
|
||
|
--- a/CMakeLists.txt
|
||
|
+++ b/CMakeLists.txt
|
||
|
@@ -51,7 +51,8 @@ set(SQLPP11_INSTALL_CMAKEDIR ${CMAKE_INSTALL_LIBDIR}/cmake/Sqlpp11 CACHE STRING
|
||
|
|
||
|
### Dependencies
|
||
|
if(DEPENDENCY_CHECK AND BUILD_MYSQL_CONNECTOR)
|
||
|
- find_package(MySQL REQUIRED)
|
||
|
+ find_package(MySQL NAMES unofficial-libmysql REQUIRED)
|
||
|
+ add_library(MySQL::MySQL ALIAS unofficial::libmysql::libmysql)
|
||
|
endif()
|
||
|
|
||
|
if(DEPENDENCY_CHECK AND BUILD_MARIADB_CONNECTOR)
|
||
|
diff --git a/cmake/configs/Sqlpp11MySQLConfig.cmake b/cmake/configs/Sqlpp11MySQLConfig.cmake
|
||
|
index 0d2a5b3..53dab6e 100644
|
||
|
--- a/cmake/configs/Sqlpp11MySQLConfig.cmake
|
||
|
+++ b/cmake/configs/Sqlpp11MySQLConfig.cmake
|
||
|
@@ -1,2 +1,2 @@
|
||
|
include(CMakeFindDependencyMacro)
|
||
|
-find_dependency(MySQL)
|
||
|
\ No newline at end of file
|
||
|
+find_dependency(unofficial-libmysql)
|