forked from Nikoli/vacuum-im
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
47 lines (38 loc) · 1.24 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[Requirements]
==Common==
Qt 4.8.x
OpenSSL 1.0.0
==Linux==
libidn
libXScrnSaver
zlib with minizip
hunspell or enchant or aspell
[Common]
==qmake parametrs==
INSTALL_PREFIX - installation prefix
INSTALL_APP_DIR - directory name for application
INSTALL_LIB_DIR - directory name for libraries
INSTALL_RES_DIR - directory name for resources
[Windows]
* Default install directory c:\vacuum
==Visual Studio==
qmake CONFIG-=debug_and_release CONFIG-=debug -recursive vacuum.pro
nmake
nmake install
==MinGW==
qmake CONFIG-=debug_and_release CONFIG-=debug -recursive vacuum.pro
mingw32-make.exe
mingw32-make.exe install
[Linux/Unix]
* Default install prefix /usr/local
* By default libvacuumutils.so is copied to /usr/local/lib. On some distributives
* you may receive message that libvacuumutils.so is not found. In this case configure
* your system to search libraries in /usr/local/lib.
qmake CONFIG-=debug_and_release CONFIG-=debug -recursive vacuum.pro
make
make install
[MacOS X]
* Default install directory /Applications/vacuum.app
qmake CONFIG-=debug_and_release CONFIG-=debug -recursive vacuum.pro
make
make install