-
Notifications
You must be signed in to change notification settings - Fork 58
/
INSTALL
34 lines (20 loc) · 808 Bytes
/
INSTALL
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
WINDOWS
=======
Build the Visual Studio 2005 solution "ude.sln".
LINUX
=====
You can build the library, the example and the nunit tests with monodelop
and its solution "ude.mds", or using make. To compile the sources tarball:
$ ./configure.sh --prefix=/usr/local --enable-tests=yes
$ make
To compile from svn:
$ ./autogen.sh --prefix=/usr/local --enable-tests=yes
$ make
You can pick the library (Ude.dll) from the toplevel build directory (./bin) or
you can install it to $prefix/lib/ude by typing:
$ make install
This will installs a command-line example program ($prefix/bin/udetect) to test
the library on a given file as:
$ udetect filename
To run the nunit tests you can type:
$ make test