mirror of
https://github.com/SFML/SFML.git
synced 2024-11-28 22:31:09 +08:00
Removed last references to libsndfile
This commit is contained in:
parent
af4dac6fed
commit
f17ea5872b
@ -74,7 +74,7 @@ if(SFML_OS_MACOSX)
|
|||||||
# add an option to build frameworks instead of dylibs (release only)
|
# add an option to build frameworks instead of dylibs (release only)
|
||||||
sfml_set_option(SFML_BUILD_FRAMEWORKS FALSE BOOL "TRUE to build SFML as frameworks libraries (release only), FALSE to build according to BUILD_SHARED_LIBS")
|
sfml_set_option(SFML_BUILD_FRAMEWORKS FALSE BOOL "TRUE to build SFML as frameworks libraries (release only), FALSE to build according to BUILD_SHARED_LIBS")
|
||||||
|
|
||||||
# add an option to let the user specify a custom directory for frameworks installation (SFML, sndfile, ...)
|
# add an option to let the user specify a custom directory for frameworks installation (SFML, FLAC, ...)
|
||||||
sfml_set_option(CMAKE_INSTALL_FRAMEWORK_PREFIX "/Library/Frameworks" STRING "Frameworks installation directory")
|
sfml_set_option(CMAKE_INSTALL_FRAMEWORK_PREFIX "/Library/Frameworks" STRING "Frameworks installation directory")
|
||||||
|
|
||||||
# add an option to automatically install Xcode templates
|
# add an option to automatically install Xcode templates
|
||||||
|
@ -1,28 +0,0 @@
|
|||||||
# - Find sndfile
|
|
||||||
# Find the native sndfile includes and libraries
|
|
||||||
#
|
|
||||||
# SNDFILE_INCLUDE_DIR - where to find sndfile.h, etc.
|
|
||||||
# SNDFILE_LIBRARIES - List of libraries when using libsndfile.
|
|
||||||
# SNDFILE_FOUND - True if libsndfile found.
|
|
||||||
|
|
||||||
if(SNDFILE_INCLUDE_DIR)
|
|
||||||
# Already in cache, be silent
|
|
||||||
set(SNDFILE_FIND_QUIETLY TRUE)
|
|
||||||
endif(SNDFILE_INCLUDE_DIR)
|
|
||||||
|
|
||||||
find_path(SNDFILE_INCLUDE_DIR sndfile.h)
|
|
||||||
|
|
||||||
find_library(SNDFILE_LIBRARY NAMES sndfile sndfile-1)
|
|
||||||
|
|
||||||
# Handle the QUIETLY and REQUIRED arguments and set SNDFILE_FOUND to TRUE if
|
|
||||||
# all listed variables are TRUE.
|
|
||||||
include(FindPackageHandleStandardArgs)
|
|
||||||
find_package_handle_standard_args(SNDFILE DEFAULT_MSG SNDFILE_LIBRARY SNDFILE_INCLUDE_DIR)
|
|
||||||
|
|
||||||
if(SNDFILE_FOUND)
|
|
||||||
set(SNDFILE_LIBRARIES ${SNDFILE_LIBRARY})
|
|
||||||
else(SNDFILE_FOUND)
|
|
||||||
set(SNDFILE_LIBRARIES)
|
|
||||||
endif(SNDFILE_FOUND)
|
|
||||||
|
|
||||||
mark_as_advanced(SNDFILE_INCLUDE_DIR SNDFILE_LIBRARY)
|
|
Loading…
Reference in New Issue
Block a user