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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
Requirements
============
* Qt framework, version 5 (http://www.qt.io/)
* Optional: OpenSLL toolkit (http://www.openssl.org/)
The program can be built using the standard 'qmake' tool from Qt. Simple configure
scripts are available for both Linux and Windows which create a configuration file
and run qmake with appropriate parameters. See detailed instructions below.
In order to support secure connections over HTTPS, Qt must be built with OpenSSL
support enabled.
Linux
=====
To compile the program you will need a C++ compiler (preferably gcc) and headers
for the Qt library (if you use binary packages, make sure you have the appropriate
'devel' package installed).
The typical procedure of building and installing the program is:
$ ./configure
$ make
# make install
Additional options that can be passed to the configure script:
-prefix DIR
Location where the package will be installed (default is '/usr/local').
-qmake PATH
Full path to the 'qmake' tool (required if it cannot be found
automatically).
-debug
Build with debugging symbols.
-system-sqlite
Use system SQLite library instead of the embedded one.
Windows
=======
You must have the open source edition of Qt installed. The program can be compiled
using either the MinGW compiler or Microsoft Visual C++.
If you are using MinGW, open the Qt Command Prompt. Go to the directory where
you have unpacked WebIssues and run:
> configure.bat
> mingw32-make
If you are using Microsoft Visual C++, open the Visual Studio Command Prompt.
Make sure that QTDIR is set to the path where Qt was installed. Go to the directory
where you have unpacked WebIssues and run:
> set QTDIR=C:\path\to\qt5
> configure.bat
> nmake
Additional options that can be passed to the configure script:
-prefix DIR
The location where the package will be installed (default is
'C:\Program Files\WebIssues').
-debug
Build with debugging symbols.
-system-sqlite
Use system SQLite library instead of the embedded one.
-msvc
Generate a solution for Microsoft Visual Studio instead of Makefiles.
-I DIRS
Specify additional directories containing include files.
-L DIRS
Specify additional directories containing library files.
Mac OS X
========
To compile the program you will need a C++ compiler and headers for the Qt library.
The typical procedure of building the program is:
$ ./configure
$ make
To create the binary package you can run the attached script:
$ cd packages/osx
$ ./maintainer-build-package.sh /path/to/qmake
Additional options that can be passed to the configure script:
-prefix DIR
Location where the package will be installed (default is '/usr/local').
-qmake PATH
Full path to the 'qmake' tool (required if it cannot be found
automatically).
-debug
Build with debugging symbols.
-system-sqlite
Use system SQLite library instead of the embedded one.
-universal
Build for x86_64, x86 and PPC platforms.
-target VERSION
Set OS X deployment target (default target is 10.3).
-sdk PATH
Set OS X SDK (default is /Developer/SDKs/MacOSX10.6.sdk).
|