diff options
author | Alexandre Bouvier <contact@amb.tf> | 2023-10-12 16:36:26 +0200 |
---|---|---|
committer | Alexandre Bouvier <contact@amb.tf> | 2023-10-25 21:47:32 +0200 |
commit | 79ba5d9c260ca4e2890b8e9c9efd79e3df5fe763 (patch) | |
tree | 31f33d5ccac863e5584b3be53cd2e07a314c9b8e /CMakeModules | |
parent | 6eb3a583cbbb55ebe6dd2409f5f53aef02cff561 (diff) |
cmake: prefer system stb headers
Diffstat (limited to 'CMakeModules')
-rw-r--r-- | CMakeModules/Findstb.cmake | 31 |
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 +) |