]> git.lyx.org Git - lyx.git/blob - development/cmake/modules/FindASPELL.cmake
installer: preparations for the LyX 1.5.0 release
[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 if(WIN32)
37         file(TO_CMAKE_PATH "$ENV{PROGRAMFILES}" _program_FILES_DIR)
38 endif(WIN32)
39
40
41 if (ASPELL_INCLUDE_DIR AND ASPELL_LIBRARY)
42         # Already in cache, be silent
43         set(ASPELL_FIND_QUIETLY TRUE)
44 endif (ASPELL_INCLUDE_DIR AND ASPELL_LIBRARY)
45
46 FIND_PATH(ASPELL_INCLUDE_DIR aspell.h
47         /usr/include
48         /usr/local/include
49         /usr/local/include/aspell
50         ${_program_FILES_DIR}/gnuwin32/include
51 )
52
53 FIND_LIBRARY(ASPELL_LIBRARY_RELEASE NAMES aspell aspell-15 libaspell
54         PATHS
55         /usr/lib
56         /usr/local/lib
57 )
58
59 # msvc makes a difference between debug and release
60 if(MSVC)
61         find_library(ASPELL_LIBRARY_DEBUG NAMES aspelld libaspelld
62                  PATHS 
63                  ${_program_FILES_DIR}/kdewin32/lib)
64                                 
65         if(MSVC_IDE)
66                 if(NOT ASPELL_LIBRARY_DEBUG OR NOT ASPELL_LIBRARY_RELEASE)
67                         SET(ASPELL_LIBRARY)
68                 else(NOT ASPELL_LIBRARY_DEBUG OR NOT ASPELL_LIBRARY_RELEASE)    
69                         SET(ASPELL_LIBRARY optimized ${ASPELL_LIBRARY_RELEASE} debug ${ASPELL_LIBRARY_DEBUG})
70                 endif(NOT ASPELL_LIBRARY_DEBUG OR NOT ASPELL_LIBRARY_RELEASE)   
71         else(MSVC_IDE)
72                 string(TOLOWER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE_TOLOWER)
73                 if(CMAKE_BUILD_TYPE_TOLOWER MATCHES debug)
74                         set(ASPELL_LIBRARY ${ASPELL_LIBRARY_DEBUG})
75                 else(CMAKE_BUILD_TYPE_TOLOWER MATCHES debug)
76                         set(ASPELL_LIBRARY ${ASPELL_LIBRARY_RELEASE})
77                 endif(CMAKE_BUILD_TYPE_TOLOWER MATCHES debug)
78         endif(MSVC_IDE)
79 else(MSVC)
80         set(ASPELL_LIBRARY ${ASPELL_LIBRARY_RELEASE})
81 endif(MSVC)
82
83 if (ASPELL_INCLUDE_DIR AND ASPELL_LIBRARY)
84          set(ASPELL_FOUND TRUE)
85 endif (ASPELL_INCLUDE_DIR AND ASPELL_LIBRARY)
86
87 if (ASPELL_FOUND)
88         if (NOT ASPELL_FIND_QUIETLY)
89         message(STATUS "Found ASPELL: ${ASPELL_LIBRARY}")
90         endif (NOT ASPELL_FIND_QUIETLY)
91 else (ASPELL_FOUND)
92         if (ASPELL_FIND_REQUIRED)
93         message("aspell header      : ${ASPELL_INCLUDE_DIR}")
94         message("aspell lib release : ${ASPELL_LIBRARY_RELEASE}")
95         message("aspell lib debug   : ${ASPELL_LIBRARY_DEBUG}") 
96         if(MSVC_IDE)
97                 # the ide needs the debug and release version
98                 if(NOT ASPELL_LIBRARY_DEBUG OR NOT ASPELL_LIBRARY_RELEASE)
99                          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")
100                 endif(NOT ASPELL_LIBRARY_DEBUG OR NOT ASPELL_LIBRARY_RELEASE)
101         endif(MSVC_IDE)
102         message(FATAL_ERROR "Could NOT find ASPELL")
103         endif (ASPELL_FIND_REQUIRED)
104 endif (ASPELL_FOUND)
105
106 MARK_AS_ADVANCED(ASPELL_INCLUDE_DIR ASPELL_LIBRARY)