From 359a8770a62be951d978ab41005e7d0bc5e466bd Mon Sep 17 00:00:00 2001 From: Richard Date: Sat, 8 Mar 2025 14:59:31 +0000 Subject: initial --- cmake/Modules/FindGuttersynth.cmake | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 cmake/Modules/FindGuttersynth.cmake (limited to 'cmake/Modules/FindGuttersynth.cmake') diff --git a/cmake/Modules/FindGuttersynth.cmake b/cmake/Modules/FindGuttersynth.cmake new file mode 100644 index 0000000..64adc9f --- /dev/null +++ b/cmake/Modules/FindGuttersynth.cmake @@ -0,0 +1,8 @@ +FIND_PATH(Guttersynth_INCLUDE_DIR NAMES guttersynth.h) +# Look for the library. +FIND_LIBRARY(Guttersynth_LIBRARY NAMES guttersynth) + +# Handle the QUIETLY and REQUIRED arguments and set GUTTERSYNTH_FOUND to TRUE if all listed variables are TRUE. +INCLUDE(FindPackageHandleStandardArgs) +FIND_PACKAGE_HANDLE_STANDARD_ARGS(Guttersynth DEFAULT_MSG Guttersynth_LIBRARY Guttersynth_INCLUDE_DIR) + -- cgit v1.2.3