From c2871a72494af566f2a35f368966c9cf38d0eace Mon Sep 17 00:00:00 2001 From: satoshi Date: Wed, 1 Mar 2017 00:34:30 +0900 Subject: [PATCH] add README --- README.md | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a6edcb6 --- /dev/null +++ b/README.md @@ -0,0 +1,62 @@ +# Game Monitor + +The robot state viewer from robot communication. It's for the robot "Accelite" of team CITBrains at RoboCup Soccer Humanoid League. +If you find a bug please let me know by opening an issue in this repository. + +## Supported OS + +* Linux (Ubuntu) +* Mac OS Sierra + +## Requirements + +* Qt 4.8 +* Boost C++ + +## How to build + +### Linux (Ubuntu 14.04) + +Install libraries. + +``` +apt-get install libqt4-core libqt4-dev libqt4-gui qt4-dev-tools +apt-get install libboost-all-dev +``` + +If your system is 'Ubuntu 12.04', run follow command. + +``` +add-apt-repository ppa:ubuntu-toolchain-r/test +apt-get update +apt-get install gcc-4.8 g++-4.8 +update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 20 +update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 20 +``` + +Finally, compile it. + +``` +./qt_make.sh +``` + +### Mac OS + +Install libraries. + +``` +brew update -all +brew install qt4 +brew install boost +``` + +Finally, compile it. + +``` +./qt_make.sh +``` + +## Author + +Satoshi SHIMADA (mylinux1204@gmail.com) +