forked from gk7huki/rvhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
44 lines (32 loc) · 1.24 KB
/
README
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
The source is licensed fully under GPL.
See LICENSE for details.
To build:
copy build_config.py.dist to build_config.py and edit the file
to have correct paths etc. for your system.
Release build:
just run scons
Debug build:
run scons debug=yes
For building scons is needed:
http://www.scons.org/
Stand-alone Windows build available also:
https://developer.berlios.de/project/showfiles.php?group_id=2672
For building Qt (Qt 4.7.2 used, later versions may work also):
- On Linux:
./configure.exe -prefix=<path to where to install qt> -static -no-sql-sqlite -no-sql-sqlite2 -no-sql-sqlite_symbian
make
- On Windows with MinGW:
export QTDIR=<path to extracted qt directory>/
export PATH=${PATH}:${QTDIR}
export QMAKESPEC=$QTDIR/mkspecs/win32-g++
./configure.exe -prefix=<path to where to install qt> -static -release
mingw32-make
Under windows, you also need to build resource.o to the
src directory from resource.rc & resource.h. If you are
unsure how to do that, contact me.
When built, you can create an installation executable with
Inno Setup using install/installer.iss script.
For needed libraries and other installation details, see also:
http://rvhouse.revoltzone.net/index.php?section=sources
Arto Jalkanen