Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. # - Find libFLAC++
  2. #
  3. # This module defines
  4. # FLACPP_FOUND - True if libFLAC++ has been found.
  5. # FLACPP_LIBRARIES - List of libraries when using libFLAC++.
  6. # FLACPP_INCLUDE_DIRS - libFLAC++ include directories.
  7.  
  8.  
  9. # Look for the header file.
  10. FIND_PATH(FLACPP_INCLUDE_DIRS
  11. NAMES FLAC++/all.h FLAC++/decoder.h FLAC++/encoder.h FLAC++/export.h FLAC++/metadata.h)
  12.  
  13. # Find the library.
  14. find_library(FLACPP_LIBRARIES
  15. NAMES FLAC++)
  16.  
  17. include(FindPackageHandleStandardArgs)
  18. find_package_handle_standard_args(FLACPP DEFAULT_MSG FLACPP_LIBRARIES FLACPP_INCLUDE_DIRS)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement