forked from personalrobotics/libkindrv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
45 lines (25 loc) · 841 Bytes
/
README
File metadata and controls
45 lines (25 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
libkindrv
=========
Open source library with libusb-based drivers to control robotic arms by Kinova.
Installation:
=============
The installation procedure is based on cmake and contains nothing
more than the usual procedure:
# 1. Make a build directory inside libkindrv directory
mkdir build
# 2. Run cmake from inside the build directory
cd build
cmake ..
# 3. Build the kindrv library
make
# 4. Install the kindrv library (may need root privileges)
make install
# 5. [Optional] Remove build directory
cd ..
rm -rf build
# 6. [Optional] Build documentation (will build into doc/html directory inside libkindrv directory)
doxygen Doxyfile.in
Of course the default cmake options are availabe, as well as
using the GUI version of cmake in step 2 with
cd build
ccmake ..