summaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorFilip Gawin <filip.gawin@zoho.com>2020-10-31 23:14:28 +0100
committershfil <filip.gawin@zoho.com>2020-11-02 17:07:04 +0100
commit1df6dda546aa658d456846900880ac380d0ab677 (patch)
tree360be8ea099941f77a0f1490151a61fb2f3d6ff3 /cmake
parentFix include in Frontend_PS2.cpp (diff)
downloadre3-1df6dda546aa658d456846900880ac380d0ab677.tar
re3-1df6dda546aa658d456846900880ac380d0ab677.tar.gz
re3-1df6dda546aa658d456846900880ac380d0ab677.tar.bz2
re3-1df6dda546aa658d456846900880ac380d0ab677.tar.lz
re3-1df6dda546aa658d456846900880ac380d0ab677.tar.xz
re3-1df6dda546aa658d456846900880ac380d0ab677.tar.zst
re3-1df6dda546aa658d456846900880ac380d0ab677.zip
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindMPG123.cmake28
-rw-r--r--cmake/FindSndFile.cmake67
2 files changed, 95 insertions, 0 deletions
diff --git a/cmake/FindMPG123.cmake b/cmake/FindMPG123.cmake
new file mode 100644
index 00000000..a9b6dd8b
--- /dev/null
+++ b/cmake/FindMPG123.cmake
@@ -0,0 +1,28 @@
+# - Find mpg123
+# Find the native mpg123 includes and library
+#
+# MPG123_INCLUDE_DIR - where to find mpg123.h
+# MPG123_LIBRARIES - List of libraries when using mpg123.
+# MPG123_FOUND - True if mpg123 found.
+
+IF(MPG123_INCLUDE_DIR AND MPG123_LIBRARIES)
+ # Already in cache, be silent
+ SET(MPG123_FIND_QUIETLY TRUE)
+ENDIF(MPG123_INCLUDE_DIR AND MPG123_LIBRARIES)
+
+FIND_PATH(MPG123_INCLUDE_DIR mpg123.h
+ PATHS "${MPG123_DIR}"
+ PATH_SUFFIXES include
+ )
+
+FIND_LIBRARY(MPG123_LIBRARIES NAMES mpg123 mpg123-0
+ PATHS "${MPG123_DIR}"
+ PATH_SUFFIXES lib
+ )
+
+# MARK_AS_ADVANCED(MPG123_LIBRARIES MPG123_INCLUDE_DIR)
+
+# handle the QUIETLY and REQUIRED arguments and set MPG123_FOUND to TRUE if
+# all listed variables are TRUE
+INCLUDE(FindPackageHandleStandardArgs)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(MPG123 DEFAULT_MSG MPG123_LIBRARIES MPG123_INCLUDE_DIR)
diff --git a/cmake/FindSndFile.cmake b/cmake/FindSndFile.cmake
new file mode 100644
index 00000000..8ae47b70
--- /dev/null
+++ b/cmake/FindSndFile.cmake
@@ -0,0 +1,67 @@
+# Found on http://hg.kvats.net
+#
+# - Try to find libsndfile
+#
+# Once done this will define
+#
+# SNDFILE_FOUND - system has libsndfile
+# SNDFILE_INCLUDE_DIRS - the libsndfile include directory
+# SNDFILE_LIBRARIES - Link these to use libsndfile
+#
+# Copyright (C) 2006 Wengo
+#
+# Redistribution and use is allowed according to the terms of the New
+# BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+#
+
+if (SNDFILE_LIBRARIES AND SNDFILE_INCLUDE_DIRS)
+ # in cache already
+ set(SNDFILE_FOUND TRUE)
+else (SNDFILE_LIBRARIES AND SNDFILE_INCLUDE_DIRS)
+
+ find_path(SNDFILE_INCLUDE_DIR
+ NAMES
+ sndfile.h
+ PATHS
+ /usr/include
+ /usr/local/include
+ /opt/local/include
+ /sw/include
+ )
+
+ find_library(SNDFILE_LIBRARY
+ NAMES
+ sndfile
+ PATHS
+ /usr/lib
+ /usr/local/lib
+ /opt/local/lib
+ /sw/lib
+ )
+
+ set(SNDFILE_INCLUDE_DIRS
+ ${SNDFILE_INCLUDE_DIR}
+ )
+ set(SNDFILE_LIBRARIES
+ ${SNDFILE_LIBRARY}
+ )
+
+ if (SNDFILE_INCLUDE_DIRS AND SNDFILE_LIBRARIES)
+ set(SNDFILE_FOUND TRUE)
+ endif (SNDFILE_INCLUDE_DIRS AND SNDFILE_LIBRARIES)
+
+ if (SNDFILE_FOUND)
+ if (NOT SndFile_FIND_QUIETLY)
+ message(STATUS "Found libsndfile: ${SNDFILE_LIBRARIES}")
+ endif (NOT SndFile_FIND_QUIETLY)
+ else (SNDFILE_FOUND)
+ if (SndFile_FIND_REQUIRED)
+ message(FATAL_ERROR "Could not find libsndfile")
+ endif (SndFile_FIND_REQUIRED)
+ endif (SNDFILE_FOUND)
+
+ # show the SNDFILE_INCLUDE_DIRS and SNDFILE_LIBRARIES variables only in the advanced view
+ mark_as_advanced(SNDFILE_INCLUDE_DIRS SNDFILE_LIBRARIES)
+
+endif (SNDFILE_LIBRARIES AND SNDFILE_INCLUDE_DIRS)