diff options
author | Shauren <shauren.trinity@gmail.com> | 2022-07-19 00:33:07 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-07-19 00:33:07 +0200 |
commit | e9152679d78c456e05be3743d7fed308c8304555 (patch) | |
tree | 131597b20285646132be248737c3caedbf228d33 /dep | |
parent | 763c758969447d7164c62f78d2e18978c929956c (diff) |
Build: Fixed finding mysql binary on first cmake run
Closes #28133
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) |