]> git.lyx.org Git - lyx.git/blob - development/cmake/modules/FindASPELL.cmake
Add doc for vcs comparison
[lyx.git] / development / cmake / modules / FindASPELL.cmake
1 #
2 #  Copyright (c) 2006, Peter Kümmel, <syntheticpp@gmx.net>
3 #
4 #  Redistribution and use in source and binary forms, with or without
5 #  modification, are permitted provided that the following conditions
6 #  are met:
7 #  
8 #  1. Redistributions of source code must retain the copyright
9 #     notice, this list of conditions and the following disclaimer.
10 #  2. Redistributions in binary form must reproduce the copyright
11 #     notice, this list of conditions and the following disclaimer in the
12 #     documentation and/or other materials provided with the distribution.
13 #  3. The name of the author may not be used to endorse or promote products 
14 #     derived from this software without specific prior written permission.
15 #  
16 #  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 #  IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 #  OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 #  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 #  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 #  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 #  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 #  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 #  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 #  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #  
27 # - Try to find ASPELL
28 # Once done this will define
29 #
30 #       ASPELL_FOUND - system has ASPELL
31 #       ASPELL_INCLUDE_DIR - the ASPELL include directory
32 #       ASPELL_LIBRARY - The libraries needed to use ASPELL
33 #       ASPELL_DEFINITIONS - Compiler switches required for using ASPELL
34 #
35
36 set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
37
38 if(WIN32)
39         file(TO_CMAKE_PATH "$ENV{PROGRAMFILES}" _program_FILES_DIR)
40 endif()
41
42
43 if(ASPELL_INCLUDE_DIR AND ASPELL_LIBRARY)
44         # Already in cache, be silent
45         set(ASPELL_FIND_QUIETLY TRUE)
46 endif()
47
48 FIND_PATH(ASPELL_INCLUDE_DIR aspell.h
49         /usr/include
50         /usr/local/include
51         /usr/local/include/aspell
52         ${_program_FILES_DIR}/gnuwin32/include
53 )
54
55 FIND_LIBRARY(ASPELL_LIBRARY_RELEASE NAMES aspell aspell-15 libaspell libaspell-15
56         PATHS
57         /usr/lib
58         /usr/local/lib
59 )
60
61 # msvc makes a difference between debug and release
62 if(MSVC)
63         find_library(ASPELL_LIBRARY_DEBUG NAMES aspelld libaspelld libaspell-15
64                  PATHS 
65                  ${_program_FILES_DIR}/kdewin32/lib)
66                                 
67         if(MSVC_IDE)
68                 if(NOT ASPELL_LIBRARY_DEBUG OR NOT ASPELL_LIBRARY_RELEASE)
69                         set(ASPELL_LIBRARY)
70                 else()  
71                         set(ASPELL_LIBRARY optimized ${ASPELL_LIBRARY_RELEASE} debug ${ASPELL_LIBRARY_DEBUG})
72                 endif() 
73         else()
74                 string(TOLOWER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE_TOLOWER)
75                 if(CMAKE_BUILD_TYPE_TOLOWER MATCHES debug)
76                         set(ASPELL_LIBRARY ${ASPELL_LIBRARY_DEBUG})
77                 else()
78                         set(ASPELL_LIBRARY ${ASPELL_LIBRARY_RELEASE})
79                 endif()
80         endif()
81 else()
82         set(ASPELL_LIBRARY ${ASPELL_LIBRARY_RELEASE} CACHE STRING "Aspell library" FORCE)
83 endif()
84
85 if(ASPELL_INCLUDE_DIR AND ASPELL_LIBRARY)
86          set(ASPELL_FOUND TRUE)
87 endif()
88
89 if(ASPELL_FOUND)
90         if (NOT ASPELL_FIND_QUIETLY)
91         message(STATUS "Found ASPELL: ${ASPELL_LIBRARY}")
92         endif()
93 else()
94         if (ASPELL_FIND_REQUIRED)
95         message("aspell header      : ${ASPELL_INCLUDE_DIR}")
96         message("aspell lib release : ${ASPELL_LIBRARY_RELEASE}")
97         message("aspell lib debug   : ${ASPELL_LIBRARY_DEBUG}") 
98         if(MSVC_IDE)
99                 # the ide needs the debug and release version
100                 if(NOT ASPELL_LIBRARY_DEBUG OR NOT ASPELL_LIBRARY_RELEASE)
101                          message(FATAL_ERROR "\nCould NOT find the debug AND release version of the aspell library.\nYou need to have both to use MSVC projects.\nPlease build and install both kdelibs/win/ libraries first.\n")
102                 endif()
103         endif()
104         message(FATAL_ERROR "Could NOT find ASPELL")
105         endif()
106 endif()
107
108 MARK_AS_ADVANCED(ASPELL_INCLUDE_DIR ASPELL_LIBRARY ASPELL_LIBRARY_RELEASE ASPELL_LIBRARY_DEBUG)