Compile Emma 02 on Linux - Fedora
These instructions describe how to compile Emma 02 on Linux Fedora. If you have any problems feel free to drop me an email.
Libraries
Download and compile the libraries described in the following sub chapters.
wxwidgets
Install the 'gcc, gcc-c++ and make' packages and gtk2 development package using the following:
sudo yum install gcc gcc-c++ make sudo yum install gtk2-devel
Download the latest stable wxwidgets 3.x release from: www.wxwidgets.org.
Compile wxWidgets by following: wiki.wxwidgets.org/Compiling_and_getting_started. For the release build I used:
mkdir build-gtk cd build-gtk ../configure --disable-shared --enable-unicode make sudo make install
For the debug build, add --enable-debug to the ../configure.
SDL
Install SDL by using the following:
sudo yum install SDL-devel
Curl
Install Curl by using the following:
sudo yum install libcurl-devel
libserialport
Install libserialport by using the following:
sudo yum install libserialport-devel
Build Emma 02
Pull the latest source package from the github repository https://github.com/etxmato/emma_02, go to the sub folder Release and use:
make