aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorRichard <q@1bpm.net>2021-03-16 01:20:31 +0000
committerRichard <q@1bpm.net>2021-03-16 01:20:31 +0000
commit4e3f857cb84c2c2ba834d5ddd0c5e1d9375cd947 (patch)
tree4ffc6ef2c8db27689c1c230d1f1b93f365e03747 /cmake
downloadcsound-xtract-4e3f857cb84c2c2ba834d5ddd0c5e1d9375cd947.tar.gz
csound-xtract-4e3f857cb84c2c2ba834d5ddd0c5e1d9375cd947.tar.bz2
csound-xtract-4e3f857cb84c2c2ba834d5ddd0c5e1d9375cd947.zip
initial
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Modules/FindCsound.cmake29
-rw-r--r--cmake/Modules/FindXtract.cmake19
2 files changed, 48 insertions, 0 deletions
diff --git a/cmake/Modules/FindCsound.cmake b/cmake/Modules/FindCsound.cmake
new file mode 100644
index 0000000..e55b269
--- /dev/null
+++ b/cmake/Modules/FindCsound.cmake
@@ -0,0 +1,29 @@
+# Try to find the Csound library.
+# Once done this will define:
+# CSOUND_FOUND - System has the Csound library
+# CSOUND_INCLUDE_DIRS - The Csound include directories.
+# CSOUND_LIBRARIES - The libraries needed to use the Csound library.
+
+if(APPLE)
+find_path(CSOUND_INCLUDE_DIR csound.h HINTS /Library/Frameworks/CsoundLib64.framework/Headers
+"$ENV{HOME}/Library/Frameworks/CsoundLib64.framework/Headers")
+else()
+find_path(CSOUND_INCLUDE_DIR csound.h PATH_SUFFIXES csound)
+endif()
+
+if(APPLE)
+find_library(CSOUND_LIBRARY NAMES CsoundLib64 HINTS /Library/Frameworks/CsoundLib64.framework/
+"$ENV{HOME}/Library/Frameworks/CsoundLib64.framework")
+else()
+find_library(CSOUND_LIBRARY NAMES csound64 csound)
+endif()
+
+include(FindPackageHandleStandardArgs)
+# handle the QUIETLY and REQUIRED arguments and set CSOUND_FOUND to TRUE
+# if all listed variables are TRUE
+find_package_handle_standard_args(CSOUND
+ CSOUND_LIBRARY CSOUND_INCLUDE_DIR)
+mark_as_advanced(CSOUND_INCLUDE_DIR CSOUND_LIBRARY)
+
+set(CSOUND_INCLUDE_DIRS ${CSOUND_INCLUDE_DIR})
+set(CSOUND_LIBRARIES ${CSOUND_LIBRARY} )
diff --git a/cmake/Modules/FindXtract.cmake b/cmake/Modules/FindXtract.cmake
new file mode 100644
index 0000000..952c916
--- /dev/null
+++ b/cmake/Modules/FindXtract.cmake
@@ -0,0 +1,19 @@
+FIND_PATH(XTRACT_INCLUDE_DIR NAMES xtract/libxtract.h)
+# Look for the library.
+FIND_LIBRARY(XTRACT_LIBRARY NAMES xtract)
+# Handle the QUIETLY and REQUIRED arguments and set XTRACT_FOUND to TRUE if all listed variables are TRUE.
+INCLUDE(FindPackageHandleStandardArgs)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(XTRACT DEFAULT_MSG XTRACT_LIBRARY XTRACT_INCLUDE_DIR)
+
+
+
+# Copy the results to the output variables.
+IF(XTRACT_FOUND)
+ SET(XTRACT_LIBRARIES ${XTRACT_LIBRARY})
+ SET(XTRACT_INCLUDE_DIRS ${XTRACT_INCLUDE_DIR})
+ELSE(XTRACT_FOUND)
+ SET(XTRACT_LIBRARIES)
+ SET(XTRACT_INCLUDE_DIRS)
+ENDIF(XTRACT_FOUND)
+
+MARK_AS_ADVANCED(XTRACT_INCLUDE_DIRS XTRACT_LIBRARIES)