X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/46b0747592074017ff0ea4b33d4a7194235886e5..37324ea9b8c06d96b9383be993da02a01f103253:/cmake/modules/FindMySQLConnector.cmake

diff --git a/cmake/modules/FindMySQLConnector.cmake b/cmake/modules/FindMySQLConnector.cmake
index 6ab31aea..ecef9888 100644
--- a/cmake/modules/FindMySQLConnector.cmake
+++ b/cmake/modules/FindMySQLConnector.cmake
@@ -1,7 +1,7 @@
-find_path ( MySQLConnector_INCLUDE_DIR NAMES mysql/mysql.h mysql/mysql_version.h DOC "Path to MySQLConnector header files." )
+find_path ( MySQLConnector_INCLUDE_DIR PATHS /usr/local/include NAMES mysql/mysql.h mysql/mysql_version.h DOC "Path to MySQLConnector header files." )
 mark_as_advanced ( MySQLConnector_INCLUDE_DIR )
 
-find_library ( MySQLConnector_LIB NAMES mysqlclient DOC "Location of MySQLConnector library." )
+find_library ( MySQLConnector_LIB PATHS /usr/local/lib /usr/local/lib/mysql-connector-c /usr/local/lib/mysql NAMES mysqlclient DOC "Location of MySQLConnector library." )
 mark_as_advanced ( MySQLConnector_LIB )
 
 if ( MySQLConnector_INCLUDE_DIR )