diff options
author | mik1893 <michele.roscelli@gmail.com> | 2016-07-09 23:56:08 +0100 |
---|---|---|
committer | Yehonal <hw.2@hotmail.it> | 2016-07-10 17:16:36 +0200 |
commit | 74507831e0d6830596245ec99c7a840988f150b8 (patch) | |
tree | 064cef2f155a9a14e28b6ce5fb2ba42ffe1b00c3 | |
parent | e1ddffb2ed256cc40a92c48ac064bc4a6060c391 (diff) |
Force CMAKE to check for MYSQL libraries - do not use mysql sources
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 869869b4d8..a57662fd1b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,10 +58,7 @@ find_package(PCHSupport) find_package(ACE REQUIRED) find_package(OpenSSL REQUIRED) find_package(Threads REQUIRED) - -if( NOT USE_MYSQL_SOURCES ) - find_package(MySQL REQUIRED) -endif() +find_package(MySQL REQUIRED) if( UNIX ) find_package(Readline) |