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