02-27-2015, 12:04 PM
(This post was last modified: 03-01-2015, 07:05 PM by malcom2073.)
This topic will serve as instructions for compiling EMStudio applications.
There are some prerequisites to compiling any of the applications:
EMStune:
EMSLogView
EMSLoad
There are some prerequisites to compiling any of the applications:
- Ubuntu 14.04 or newer:
Code:sudo apt-get update
sudo apt-get install git qt5-qmake qt5-default qtscript5-dev libqt5webkit5-dev libqt5serialport5-dev libqt5svg5-dev libsdl1.2-dev libsndfile-dev flite1-dev libssl-dev libudev-dev libsdl2-dev
- Windows 7(x64)
Msysgit: https://msysgit.github.io/
MSVC2010: Microsoft's website, "MS Visual C++ Express 2010" or "MS Visual Studio Express 2012" work.
Qt:
Qt installers are available here: http://download.qt.io/archive/qt/5.2/5.2.1/
You will want to grab the one to match the MSVC version you're using, either 2010 or 2012. Be sure to get the 64_opengl version.
EMStune:
- Compiling on Ubuntu (14.04 or newer):
git clone the repository
Code:cd ~/
git clone https://github.com/malcom2073/emstune.git
cd emstune
Run qmake, then compile
Code:qmake emstune.pro
make
You can then cd into the core directory, and run emstune.
- Compiling on Windows (7x64):
Start up "GIT Bash" which should have been installed with MSysGIT.
Clone the repository:
Code:$ git clone https://github.com/malcom2073/emstune
Start QtCreator, browse to where you cloned the repository and open emstune.pro
Click Build->Build Al
Once the build is complete, click Build->Run
EMSLogView
- Compiling on Ubuntu (14.04 or newer):
git clone the repository
Code:cd ~/
git clone https://github.com/malcom2073/emslogview.git
cd emslogview
Run qmake, then compile
Code:qmake emslogview.pro
make
You can then run emslogview.
- Compiling on Windows (7x64):
Start up "GIT Bash" which should have been installed with MSysGIT.
Clone the repository:
Code:$ git clone https://github.com/malcom2073/emslogview.git
Start QtCreator, browse to where you cloned the repository and open emslogview.pro
Click Build->Build All
Once the build is complete, click Build->Run
EMSLoad
- Compiling on Ubuntu (14.04 or newer):
git clone the repository
Code:cd ~/
git clone https://github.com/malcom2073/emsload.git
cd emsload
Run qmake, then compile
Code:qmake emsload.pro
make
You can then run emsload.
- Compiling on Windows (7x64):
Start up "GIT Bash" which should have been installed with MSysGIT.
Clone the repository:
Code:$ git clone https://github.com/malcom2073/emsload.git
Start QtCreator, browse to where you cloned the repository and open emsload.pro
Click Build->Build All
Once the build is complete, click Build->Run