diff options
author | Naios <naios-dev@live.de> | 2015-10-05 16:14:31 +0200 |
---|---|---|
committer | Naios <naios-dev@live.de> | 2015-10-05 17:12:00 +0200 |
commit | 45a60c2d22a93f6196491a0eb0478d05795e310f (patch) | |
tree | 28d6d6ddc56ecdb01f805be8e2c8814c011f7488 /CMakeLists.txt | |
parent | a561edefb90af25864aeb7ca7fc48fe0364df765 (diff) |
CMake: Fix bad generation of "revision_data.h" not including MYSQL_EXECUTABLE.
* was caused through invoking "FindMySQL" after using ${MYSQL_EXECUTABLE}.
* better re-run CMake if you are affected by the mysql exe wasn't found issue.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 11444f93229..816eb4e9b98 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,6 +58,7 @@ set(OPENSSL_EXPECTED_VERSION 1.0.0) find_package(PCHSupport) find_package(OpenSSL REQUIRED) find_package(Threads REQUIRED) +find_package(MySQL) include(ConfigureBoost) |