diff options
author | Richard <q@1bpm.net> | 2025-03-09 22:33:07 +0000 |
---|---|---|
committer | Richard <q@1bpm.net> | 2025-03-09 22:33:07 +0000 |
commit | e174c759182e11f85e221eff8684088eebd563a4 (patch) | |
tree | 70155a2ec6c9fbf46c821ebe66ab63c0f17fbd8d /cmake/Modules/FindLame.cmake | |
download | csound-shout-e174c759182e11f85e221eff8684088eebd563a4.tar.gz csound-shout-e174c759182e11f85e221eff8684088eebd563a4.tar.bz2 csound-shout-e174c759182e11f85e221eff8684088eebd563a4.zip |
initial
Diffstat (limited to 'cmake/Modules/FindLame.cmake')
-rw-r--r-- | cmake/Modules/FindLame.cmake | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/cmake/Modules/FindLame.cmake b/cmake/Modules/FindLame.cmake new file mode 100644 index 0000000..e0b9f5f --- /dev/null +++ b/cmake/Modules/FindLame.cmake @@ -0,0 +1,17 @@ +FIND_PATH(LAME_INCLUDE_DIR lame/lame.h) +FIND_LIBRARY(LAME_LIBRARIES NAMES mp3lame) + +IF(LAME_INCLUDE_DIR AND LAME_LIBRARIES) + SET(LAME_FOUND TRUE) +ENDIF(LAME_INCLUDE_DIR AND LAME_LIBRARIES) + +IF(LAME_FOUND) + IF (NOT Lame_FIND_QUIETLY) + MESSAGE(STATUS "Found lame includes: ${LAME_INCLUDE_DIR}/lame/lame.h") + MESSAGE(STATUS "Found lame library: ${LAME_LIBRARIES}") + ENDIF (NOT Lame_FIND_QUIETLY) +ELSE(LAME_FOUND) + IF (Lame_FIND_REQUIRED) + MESSAGE(FATAL_ERROR "Could NOT find lame development files") + ENDIF (Lame_FIND_REQUIRED) +ENDIF(LAME_FOUND) |