This is just a simple instruction on compiling the project. More details will be added later. The Steps are easy since the project doesn't have many dependancies for now & only uses QtCreator/qmake for the whole build process.
- Download Qt5.13.0 & install. (other versions can be used, i've only tested in Qt5.14).
- Download Qt Creator & install.
- Clone the repository (
main branch
) to your local drive.
For main-branch (stable)
git clone https://github.com/3nock/OTE.git
If you are familiar with Qt-Creator.
- Load the
OTE.pro
project into the Qt creator. - Choose the compiler and build path for the project.
- If you are using QtCreator. Then just open the project file
OTE.pro
in QtCreator, configure compiler & build. - If you are using qmake, then just use the following commands to build the project respective to your system.
- Linux
mkdir build && cd build
qmake CONFIG+=release ../OTE/OTE
make
- MacOS
mkdir build && cd build
qmake CONFIG+=release ../OTE/OTE
make
macdeployqt OTE.app
- Windows
mkdir build && cd build
qmake CONFIG+=release ../OTE/OTE
make
windeployqt release/OTE.exe