diff options
author | Shauren <shauren.trinity@gmail.com> | 2022-07-19 00:33:07 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2024-02-26 12:16:50 +0100 |
commit | acb43896f275b833716c3ad6bfa1c6bf569d5c02 (patch) | |
tree | a1cba75ce52970d0ef2c01a1be4d5d549d241102 /dep | |
parent | 63cf670f65714dbea1e10b25e9a35a4ef5d4312d (diff) |
Build: Fixed finding mysql binary on first cmake run
Closes #28133
(cherry picked from commit e9152679d78c456e05be3743d7fed308c8304555)
Diffstat (limited to 'dep')
-rw-r--r-- | dep/mysql/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dep/mysql/CMakeLists.txt b/dep/mysql/CMakeLists.txt index ba4af695468..a30b0f738f4 100644 --- a/dep/mysql/CMakeLists.txt +++ b/dep/mysql/CMakeLists.txt @@ -8,7 +8,7 @@ # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -find_package(MySQL REQUIRED COMPONENTS lib OPTIONAL_COMPONENTS binary) +find_package(MySQL REQUIRED COMPONENTS lib) add_library(mysql INTERFACE) |