File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Game Monitor
2+
3+ The robot state viewer from robot communication. It's for the robot "Accelite" of team CITBrains at RoboCup Soccer Humanoid League.
4+ If you find a bug please let me know by opening an issue in this repository.
5+
6+ ## Supported OS
7+
8+ * Linux (Ubuntu)
9+ * Mac OS Sierra
10+
11+ ## Requirements
12+
13+ * Qt 4.8
14+ * Boost C++
15+
16+ ## How to build
17+
18+ ### Linux (Ubuntu 14.04)
19+
20+ Install libraries.
21+
22+ ```
23+ apt-get install libqt4-core libqt4-dev libqt4-gui qt4-dev-tools
24+ apt-get install libboost-all-dev
25+ ```
26+
27+ If your system is 'Ubuntu 12.04', run follow command.
28+
29+ ```
30+ add-apt-repository ppa:ubuntu-toolchain-r/test
31+ apt-get update
32+ apt-get install gcc-4.8 g++-4.8
33+ update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 20
34+ update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 20
35+ ```
36+
37+ Finally, compile it.
38+
39+ ```
40+ ./qt_make.sh
41+ ```
42+
43+ ### Mac OS
44+
45+ Install libraries.
46+
47+ ```
48+ brew update -all
49+ brew install qt4
50+ brew install boost
51+ ```
52+
53+ Finally, compile it.
54+
55+ ```
56+ ./qt_make.sh
57+ ```
58+
59+ ## Author
60+
61+ Satoshi SHIMADA (mylinux1204@gmail.com )
62+
You can’t perform that action at this time.
0 commit comments