]> git.lyx.org Git - lyx.git/blob - development/cmake/modules/FindASPELL.cmake
Prepare cmake-build for debian multiarch implementation
[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         ${SYSTEM_LIB_DIRS}
58 )
59
60 # msvc makes a difference between debug and release
61 if(MSVC)
62         find_library(ASPELL_LIBRARY_DEBUG NAMES aspelld libaspelld libaspell-15
63                  PATHS 
64                  ${_program_FILES_DIR}/kdewin32/lib)
65                                 
66         if(MSVC_IDE)
67                 if(NOT ASPELL_LIBRARY_DEBUG OR NOT ASPELL_LIBRARY_RELEASE)
68                         set(ASPELL_LIBRARY)
69                 else()  
70                         set(ASPELL_LIBRARY optimized ${ASPELL_LIBRARY_RELEASE} debug ${ASPELL_LIBRARY_DEBUG})
71                 endif() 
72         else()
73                 string(TOLOWER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE_TOLOWER)
74                 if(CMAKE_BUILD_TYPE_TOLOWER MATCHES debug)
75                         set(ASPELL_LIBRARY ${ASPELL_LIBRARY_DEBUG})
76                 else()
77                         set(ASPELL_LIBRARY ${ASPELL_LIBRARY_RELEASE})
78                 endif()
79         endif()
80 else()
81         set(ASPELL_LIBRARY ${ASPELL_LIBRARY_RELEASE} CACHE STRING "Aspell library" FORCE)
82 endif()
83
84 if(ASPELL_INCLUDE_DIR AND ASPELL_LIBRARY)
85          set(ASPELL_FOUND TRUE)
86 endif()
87
88 if(ASPELL_FOUND)
89         if (NOT ASPELL_FIND_QUIETLY)
90         message(STATUS "Found ASPELL: ${ASPELL_LIBRARY}")
91         endif()
92 else()
93         if (ASPELL_FIND_REQUIRED)
94         message("aspell header      : ${ASPELL_INCLUDE_DIR}")
95         message("aspell lib release : ${ASPELL_LIBRARY_RELEASE}")
96         message("aspell lib debug   : ${ASPELL_LIBRARY_DEBUG}") 
97         if(MSVC_IDE)
98                 # the ide needs the debug and release version
99                 if(NOT ASPELL_LIBRARY_DEBUG OR NOT ASPELL_LIBRARY_RELEASE)
100                          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")
101                 endif()
102         endif()
103         message(FATAL_ERROR "Could NOT find ASPELL")
104         endif()
105 endif()
106
107 MARK_AS_ADVANCED(ASPELL_INCLUDE_DIR ASPELL_LIBRARY ASPELL_LIBRARY_RELEASE ASPELL_LIBRARY_DEBUG)