aboutsummaryrefslogtreecommitdiff
path: root/cmake/Modules/FindGuttersynth.cmake
diff options
context:
space:
mode:
authorRichard <q@1bpm.net>2025-03-08 14:59:31 +0000
committerRichard <q@1bpm.net>2025-03-08 14:59:31 +0000
commit359a8770a62be951d978ab41005e7d0bc5e466bd (patch)
tree0eb7883afc10115c1c8333c1c5566d98e1d9a940 /cmake/Modules/FindGuttersynth.cmake
downloadcsound-guttersynth-359a8770a62be951d978ab41005e7d0bc5e466bd.tar.gz
csound-guttersynth-359a8770a62be951d978ab41005e7d0bc5e466bd.tar.bz2
csound-guttersynth-359a8770a62be951d978ab41005e7d0bc5e466bd.zip
initial
Diffstat (limited to 'cmake/Modules/FindGuttersynth.cmake')
-rw-r--r--cmake/Modules/FindGuttersynth.cmake8
1 files changed, 8 insertions, 0 deletions
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)
+