forked from estraier/tkrzw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
38 lines (27 loc) · 1.14 KB
/
README
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
================================================================
Tkrzw: a set of implementations of DBM
================================================================
Please read the following documents.
COPYING - license
CONTRIBUTING.md - how to contribute
doc/index.xhtml - main document
Contents of the directory tree are below.
./ - source code
./example/ - sample code for tutorial
Tkrzw is available on UNIX-like systems (Linux, Mac OS, Solaris etc)
and Windows.
On Unix-like systems, GCC 7.3 or later version is required to build
the library. GNU make and other standard tools are also required.
Then, run these commands. The files are installed under "/usr/local".
./configure --enable-opt-native --enable-most-features
make
make check
sudo make install
On Windows, Visual Studio 2019 and its C++ components are required.
Open the "x86 Native Tools Command Prompt" and then run the following
commands. The files are installed under "C:\Program Files\tkrzw".
nmake -f VCMakefile
nmake -f VCMakefile check
nmake -f VCMakefile install (run this as Administrator)
Thanks.
== END OF FILE ==