summaryrefslogtreecommitdiff
path: root/CMakeModules
diff options
context:
space:
mode:
authorFranco M <francomaro@gmail.com>2023-10-26 19:11:15 -0300
committerGitHub <noreply@github.com>2023-10-26 19:11:15 -0300
commitb5415b687203599fe18e2cefc78700e4c6f2ae7c (patch)
treeddd4c82cab9e367cdcf2bbf4a1d444f85ed0b02e /CMakeModules
parentb76a1d987ff83b831a19a0c19f9fcd96c504c077 (diff)
parent43be2bfe332d5537041262eb08037993239eaf5f (diff)
Merge branch 'yuzu-emu:master' into new-shortcut
Diffstat (limited to 'CMakeModules')
-rw-r--r--CMakeModules/Findstb.cmake31
1 files changed, 31 insertions, 0 deletions
diff --git a/CMakeModules/Findstb.cmake b/CMakeModules/Findstb.cmake
new file mode 100644
index 000000000..bff998580
--- /dev/null
+++ b/CMakeModules/Findstb.cmake
@@ -0,0 +1,31 @@
+# SPDX-FileCopyrightText: 2023 Alexandre Bouvier <contact@amb.tf>
+#
+# SPDX-License-Identifier: GPL-3.0-or-later
+
+find_path(stb_image_INCLUDE_DIR stb_image.h PATH_SUFFIXES stb)
+find_path(stb_image_resize_INCLUDE_DIR stb_image_resize.h PATH_SUFFIXES stb)
+find_path(stb_image_write_INCLUDE_DIR stb_image_write.h PATH_SUFFIXES stb)
+
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(stb
+ REQUIRED_VARS
+ stb_image_INCLUDE_DIR
+ stb_image_resize_INCLUDE_DIR
+ stb_image_write_INCLUDE_DIR
+)
+
+if (stb_FOUND AND NOT TARGET stb::headers)
+ add_library(stb::headers INTERFACE IMPORTED)
+ set_property(TARGET stb::headers PROPERTY
+ INTERFACE_INCLUDE_DIRECTORIES
+ "${stb_image_INCLUDE_DIR}"
+ "${stb_image_resize_INCLUDE_DIR}"
+ "${stb_image_write_INCLUDE_DIR}"
+ )
+endif()
+
+mark_as_advanced(
+ stb_image_INCLUDE_DIR
+ stb_image_resize_INCLUDE_DIR
+ stb_image_write_INCLUDE_DIR
+)