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
|
% vim: spelllang=en spell textwidth=120
\documentclass[trojita]{subfiles}
\begin{document}
\chapter{The Attached CD}
\label{sec:source-cd}
\section{Contents of the CD}
The attached CD is an integral part of this thesis. The contents of the top-level {\tt trojita} directory is the
following:
\begin{description}
\item[internet-drafts] The Internet-Draft manuscripts with extensions proposed as a part of this thesis
\item[src] A compressed tarball containing the source code of the Trojitá IMAP client
\item[thesis] A printable PDF file with the text of this thesis
\end{description}
\section{Build Instructions}
In order to build Trojitá, please follow these instructions:
\begin{itemize}
\item Make sure that Qt 4.6 (or newer), including its development headers, is present on the machine
\item If compiling on a Unix host, make sure that the {\tt pkgconfig} and {\tt zlib} are available as well
\item Enter the directory with Trojitá's source code
\item Execute {\tt mkdir \_build; cd \_build}
\item Run {\tt qmake CONFIG+=debug ../trojita.pro} to configure the package
\item Execute {\tt make -j4} in order to build the application
\end{itemize}
After following these instructions, Trojitá can be launched by running: \\
{\tt ./src/Gui/trojita}.
\end{document}
|