From da7c7c1f834d74ae5f7052820fb2706800aff5e1 Mon Sep 17 00:00:00 2001 From: woogerboy21 Date: Sun, 21 Jan 2018 11:05:13 -0500 Subject: [PATCH] Update Servatrice MySQL Search Path (#3039) Removed the older versions of the mysql library install paths and updated to reflect the 5.7 product paths. --- servatrice/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servatrice/CMakeLists.txt b/servatrice/CMakeLists.txt index 2e2b562f..b6422a0f 100644 --- a/servatrice/CMakeLists.txt +++ b/servatrice/CMakeLists.txt @@ -82,7 +82,7 @@ if(UNIX) SET(MYSQLCLIENT_DEFAULT_PATHS "/usr/lib64" "/usr/local/lib64" "/usr/lib" "/usr/local/lib") endif() elseif(WIN32) - SET(MYSQLCLIENT_DEFAULT_PATHS "C:\\Program Files\\MySQL\\MySQL Server 5.5\\lib" "C:\\Program Files\\MySQL\\MySQL Server 5.6\\lib" "C:\\Program Files\\MySQL\\MySQL Server 5.7\\lib") + SET(MYSQLCLIENT_DEFAULT_PATHS "C:\\Program Files\\MySQL\\MySQL Server 5.7\\lib" "C:\\Program Files (x86)\\MySQL\\MySQL Server 5.7\\lib") endif() find_library(MYSQLCLIENT_LIBRARIES NAMES mysqlclient PATHS ${MYSQLCLIENT_DEFAULT_PATHS} PATH_SUFFIXES mysql mariadb)