tried install it on Debian VPS. but there error message
-bash: qmake: command not found
InstallationWindows: just download exe file and save it to safe place.
Install commands under Linux with Qt5 (Prefered):
sudo apt-get install g++ libssl-dev libglu1-mesa-dev qt5-qmake qtscript5-dev qtmultimedia5-dev
export QT_SELECT=5
qmake QtBitcoinTrader_Desktop.pro
make && make install && make clean
Cannot find file: QtBitcoinTrader_Desktop.pro.
Any chance you already cloned the git repository? If not then you would need to do that. I might post some code for it tomorrow it's on a different computer so I'm too lazy to post it now.
Edit:
git clone https://github.com/JulyIGHOR/QtBitcoinTrader/tree/testing
That will put the whole project in whatever folder you are in when you run it making a sub folder called QtBitcoinTrader. Once you have run that once the following code will grab the current version. I'm sure you don't need the last 4 lines but it should work great. I have it in a .sh file.
git fetch --all
git merge
git checkout master
cd src
qmake QtBitcoinTrader_Desktop.pro
make
make install