forked from UrgNetwork/urg_library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Readme_ja.txt
76 lines (43 loc) · 2.07 KB
/
Readme_ja.txt
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
URG Library
About this software:
This software have been developed to provide a library to use
scanning range sensors of Hokuyo Automatic Corporation. Samples
will help to know how to use them.
Authors:
Satofumi Kamimura <[email protected]> Design and implementation of the first version.
Katsumi Kimoto
License:
(C)Simplified BSD License.
(C++)LGPL License.
See COPYRIGHT file.
Mailing list:
Library usage:
Visual Studio Solution (Windows)
urg_library-X.X.X/vs2010(or vs2005)/c(or cpp)/urg.sln をビルドします。
ビルド後は、urg.lib のスタティックライブラリと各サンプルの
実行ファイルが生成されています。
Visual Studio bat compile (Windows)
*以下の作業はコマンドプロンプト上で行ってください*
1. 環境変数を設定するために Visual Studio が提供している bat ファイルを
コピーします。
Microsoft Visual Studio 8/Common7/Tools/vsvars32.bat を
urg-library-X.X.X/windowsexeにコピーする。
2. 環境変数を設定後、コンパイル用のbatファイルを実行する。
urg-library-X.X.X/windowsexe/compile.batを実行する。
3. 生成されたサンプルの実行ファイルを動かす。
urg-library-X.X.X/windowsexeに生成されるexeを実行する。
4. 生成されたサンプルの実行ファイルを削除する。
urg-library-X.X.X/windowsexe/cleanobj.batを実行し
生成された実行ファイルを削除する。
gcc (Linux, MinGW)
必要ならば urg_library-X.X.X/Makefile の PREFIX を編集して
インストール先を変更します。
!!! 現状こうなっているので、他の場所にしたければ、変更して下さい。
PREFIX = /usr/local
#PREFIX = /mingw
コンパイルとインストールを行います。
% make
# make install
ライブラリの使い方は、urg-library-X.X.X/samples/ 中の Makefile をご覧下さい。
!!! ライブラリの使い方は、もう少しちゃんと書きたい。