diff options
author | Aaron Jacobs <[email protected]> | 2020-03-28 17:43:17 -0700 |
---|---|---|
committer | Aaron Jacobs <[email protected]> | 2020-03-28 17:43:17 -0700 |
commit | a3a2305d7a033b29c3d2fb16ef895124c169db01 (patch) | |
tree | 244e9204496661bf12418a17fb2639689ea4acf6 /cmake/FindOpenSL.cmake | |
parent | 6cfb4ec4624e948e68cd03f99f4f4917bf1549dc (diff) |
Fix find_package_handle_standard_args name mismatch warnings
Diffstat (limited to 'cmake/FindOpenSL.cmake')
-rw-r--r-- | cmake/FindOpenSL.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/FindOpenSL.cmake b/cmake/FindOpenSL.cmake index 41c68fde..e4b260bc 100644 --- a/cmake/FindOpenSL.cmake +++ b/cmake/FindOpenSL.cmake @@ -53,7 +53,7 @@ find_library(OPENSL_LIBRARY NAMES OpenSLES # handle the QUIETLY and REQUIRED arguments and set OPENSL_FOUND to TRUE if # all listed variables are TRUE include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(OPENSL REQUIRED_VARS OPENSL_LIBRARY OPENSL_INCLUDE_DIR +find_package_handle_standard_args(OpenSL REQUIRED_VARS OPENSL_LIBRARY OPENSL_INCLUDE_DIR OPENSL_ANDROID_INCLUDE_DIR) if(OPENSL_FOUND) |