-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/csound/plugins into develop
- Loading branch information
Showing
7 changed files
with
83 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# - Find LAME | ||
# Find the native LAME includes and library | ||
# | ||
# LAME_INCLUDE_DIR - where to find lame.h | ||
# LAME_LIBRARY - lame library | ||
# LAME_FOUND - lame found | ||
|
||
if (LAME_INCLUDE_DIR AND LAME_LIBRARY) | ||
# Already in cache, be silent | ||
set (LAME_FIND_QUIETLY TRUE) | ||
endif () | ||
|
||
find_path (LAME_INCLUDE_DIR lame/lame.h HINTS /usr/local/include) | ||
find_library (LAME_LIBRARY NAMES mp3lame libmp3lame HINTS /usr/local/lib) | ||
mark_as_advanced (LAME_LIBRARIES LAME_INCLUDE_DIR) | ||
|
||
# handle the QUIETLY and REQUIRED arguments and set LAME_FOUND to TRUE if | ||
# all listed variables are TRUE | ||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(LAME DEFAULT_MSG LAME_LIBRARY LAME_INCLUDE_DIR) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters