]> git.lyx.org Git - lyx.git/blob - development/cmake/modules/LyXPaths.cmake
use more unicode in math
[lyx.git] / development / cmake / modules / LyXPaths.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
28 if(WIN32)
29
30 find_package(GNUWIN32 REQUIRED)
31
32 file(TO_CMAKE_PATH "$ENV{PROGRAMFILES}" _prog_path)
33
34 set(_zlib_path ${_prog_path}/zlib)
35 set(_iconv_path ${_prog_path}/iconv)
36
37 set(_gnuwin32_dir ${GNUWIN32_DIR})
38
39 set(CMAKE_INCLUDE_PATH ${CMAKE_INCLUDE_PATH} 
40         ${_gnuwin32_dir}/include
41         ${_zlib_path}/include
42         ${_iconv_path}/include
43         )
44         
45 set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} 
46         ${_gnuwin32_dir}/lib
47         ${_zlib_path}/lib
48         ${_iconv_path}/lib
49         )
50
51 #chek_include_files path
52 set(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${_gnuwin32_dir}/include)
53
54
55 else(WIN32)
56
57         set(_prog_path ~/bin)
58         
59 endif(WIN32)
60
61
62 GET_FILENAME_COMPONENT(lyx_dir_readme ${CMAKE_SOURCE_DIR}/../../README ABSOLUTE)
63 GET_FILENAME_COMPONENT(TOP_SRC_DIR ${lyx_dir_readme} PATH)
64
65 if(WIN32)
66         set(locale_dir Resources/locale)
67 else(WIN32)     
68         set(locale_dir share/locale)
69 endif(WIN32)
70
71 set(PREFIX ${_prog_path}/LyX)
72 set(LOCAL_DIR ${PREFIX}/${locale_dir})
73
74 #message(" PREFIX : ${PREFIX}")
75 #message(" LOCAL_DIR : ${LOCAL_DIR}")
76 #message(" TOP_SRC_DIR : ${TOP_SRC_DIR}")
77
78
79