@@ -10,7 +10,7 @@ GrSim is written in C++, in order to compile it, you will need a working toolcha
10
10
11
11
GrSim depends on:
12
12
13
- - [ CMake] ( https://cmake.org/ ) version 3.5+
13
+ - [ CMake] ( https://cmake.org/ ) version 3.5+
14
14
- [ pkg-config] ( https://www.freedesktop.org/wiki/Software/pkg-config/ )
15
15
- [ OpenGL] ( https://www.opengl.org )
16
16
- [ Qt5 Development Libraries] ( https://www.qt.io )
@@ -23,13 +23,40 @@ GrSim depends on:
23
23
24
24
### Linux/Unix Installation
25
25
26
- If you run a Debian system, or derivative, first ensure that these dependencies are there:
26
+ #### Arch Linux
27
+
28
+ If you are using Arch Linux or a based Arch Linux distribution like Manjaro, you can install grSim from the [ Arch User Repository] ( https://aur.archlinux.org/packages/grsim-git/ ) using yay or the AUR helper of your choice. In order to install it with yay, run the follow:
29
+
30
+ ``` bash
31
+ $ yay -S grsim-git
32
+ ```
33
+
34
+ Otherwise, if you want to install it from the source code, install all dependencies, except VarTypes, with:
35
+
36
+ ``` bash
37
+ $ sudo pacman -S base-devel boost hicolor-icon-theme mesa ode protobuf qt5-base cmake git
38
+ ```
39
+
40
+ You can install VarTypes via [ AUR] ( https://aur.archlinux.org/packages/vartypes-qt5-git/ ) with:
41
+
42
+ ``` bash
43
+ $ yay -S vartypes-qt5-git
44
+ ```
45
+
46
+ or building from source following the steps on the Building section.
47
+
48
+ #### Debian
49
+
50
+ If you run a Debian system, or derivative, ensure that these dependencies are there:
27
51
28
52
``` bash
29
53
$ sudo apt-get install git build-essential cmake pkg-config qt5-default libqt5opengl5-dev libgl1-mesa-dev libglu1-mesa-dev libprotobuf-dev protobuf-compiler libode-dev libboost-dev
30
54
```
31
55
32
- Next compile and install VarTypes from source. In the following we install VarTypes from source using ` git ` .
56
+
57
+ #### Building
58
+
59
+ First compile and install VarTypes from source. In the following we install VarTypes from source using ` git ` .
33
60
34
61
``` bash
35
62
$ cd /tmp
@@ -57,19 +84,20 @@ $ mkdir build
57
84
$ cd build
58
85
```
59
86
60
- Run CMake to generate the makefiles :
87
+ Run CMake to generate the makefile (note: grSim will be installed into directory chosen, by default ` /usr/local ` ) :
61
88
62
89
``` bash
63
- $ cmake ..
90
+ $ cmake -DCMAKE_INSTALL_PREFIX=/usr/local ..
64
91
```
65
92
66
- Then compile the program:
93
+ Then compile the program and install it :
67
94
68
95
``` bash
69
96
$ make
97
+ $ sudo make install
70
98
```
71
99
72
- The binary is copied to the ` ../bin ` folder after a successful compilation .
100
+ grSim will be — by default — installed on the ` /usr/local ` directory .
73
101
74
102
### Mac OS X Installation
75
103
@@ -84,7 +112,7 @@ First ensure the dependencies are there:
84
112
brew install cmake
85
113
brew install pkg-config
86
114
brew tap robotology/formulae
87
- brew install robotology/formulae/ode
115
+ brew install robotology/formulae/ode
88
116
brew install qt
89
117
brew install protobuf
90
118
```
@@ -96,7 +124,7 @@ brew update
96
124
brew doctor
97
125
```
98
126
99
- Next we need to install VarTypes manually. Please refer to the documentation above for the procedure.
127
+ Next we need to install VarTypes manually. Please refer to the documentation above for the procedure.
100
128
101
129
The steps to compile grSim on Mac OS is similar to the steps outlines above for Linux:
102
130
@@ -111,7 +139,7 @@ $ cmake ..
111
139
$ make
112
140
```
113
141
114
- The binary files (grSim and the sample client) will be placed in ` ../bin ` .
142
+ The binary files (grSim and the sample client) will be placed in ` ../bin ` .
115
143
116
144
## Notes on the performance
117
145
0 commit comments