summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar Liam2023-03-11 22:10:38 -0500
committerGravatar Liam2023-03-12 11:33:01 -0400
commit600f325d87e42f856da58c42a5280f098ebb6e8c (patch)
tree75c4fe48af55186a4e420e94a1d7e1bfd92e4ec0 /CMakeLists.txt
parentgeneral: use codespell to identify spelling mistakes (diff)
downloadyuzu-600f325d87e42f856da58c42a5280f098ebb6e8c.tar.gz
yuzu-600f325d87e42f856da58c42a5280f098ebb6e8c.tar.xz
yuzu-600f325d87e42f856da58c42a5280f098ebb6e8c.zip
general: fix spelling mistakes
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 91ec50bef..6932b6fab 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -344,12 +344,12 @@ if(ENABLE_QT)
344 find_package(PkgConfig REQUIRED) 344 find_package(PkgConfig REQUIRED)
345 pkg_check_modules(QT_DEP_GLU QUIET glu>=9.0.0) 345 pkg_check_modules(QT_DEP_GLU QUIET glu>=9.0.0)
346 if (NOT QT_DEP_GLU_FOUND) 346 if (NOT QT_DEP_GLU_FOUND)
347 message(FATAL_ERROR "Qt bundled pacakge dependency `glu` not found. \ 347 message(FATAL_ERROR "Qt bundled package dependency `glu` not found. \
348 Perhaps `libglu1-mesa-dev` needs to be installed?") 348 Perhaps `libglu1-mesa-dev` needs to be installed?")
349 endif() 349 endif()
350 pkg_check_modules(QT_DEP_MESA QUIET dri>=20.0.8) 350 pkg_check_modules(QT_DEP_MESA QUIET dri>=20.0.8)
351 if (NOT QT_DEP_MESA_FOUND) 351 if (NOT QT_DEP_MESA_FOUND)
352 message(FATAL_ERROR "Qt bundled pacakge dependency `dri` not found. \ 352 message(FATAL_ERROR "Qt bundled package dependency `dri` not found. \
353 Perhaps `mesa-common-dev` needs to be installed?") 353 Perhaps `mesa-common-dev` needs to be installed?")
354 endif() 354 endif()
355 355