FindASPELL.cmake 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #.rst:
  2. # FindASPELL
  3. # ----------
  4. #
  5. # Try to find ASPELL
  6. #
  7. # Once done this will define
  8. #
  9. # ::
  10. #
  11. # ASPELL_FOUND - system has ASPELL
  12. # ASPELL_EXECUTABLE - the ASPELL executable
  13. # ASPELL_INCLUDE_DIR - the ASPELL include directory
  14. # ASPELL_LIBRARIES - The libraries needed to use ASPELL
  15. # ASPELL_DEFINITIONS - Compiler switches required for using ASPELL
  16. #=============================================================================
  17. # Copyright 2006-2009 Kitware, Inc.
  18. # Copyright 2006 Alexander Neundorf <neundorf@kde.org>
  19. #
  20. # Distributed under the OSI-approved BSD License (the "License");
  21. # see accompanying file Copyright.txt for details.
  22. #
  23. # This software is distributed WITHOUT ANY WARRANTY; without even the
  24. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  25. # See the License for more information.
  26. #=============================================================================
  27. # (To distribute this file outside of CMake, substitute the full
  28. # License text for the above reference.)
  29. find_path(ASPELL_INCLUDE_DIR aspell.h )
  30. find_program(ASPELL_EXECUTABLE
  31. NAMES aspell
  32. )
  33. find_library(ASPELL_LIBRARIES NAMES aspell aspell-15 libaspell-15 libaspell)
  34. # handle the QUIETLY and REQUIRED arguments and set ASPELL_FOUND to TRUE if
  35. # all listed variables are TRUE
  36. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  37. FIND_PACKAGE_HANDLE_STANDARD_ARGS(ASPELL DEFAULT_MSG ASPELL_LIBRARIES ASPELL_INCLUDE_DIR ASPELL_EXECUTABLE)
  38. mark_as_advanced(ASPELL_INCLUDE_DIR ASPELL_LIBRARIES ASPELL_EXECUTABLE)