README.txt 1.1 KB
Newer Older
1
2


Davis King's avatar
Davis King committed
3
4
See http://dlib.net for the main project documentation.

5
6
7


COMPILING DLIB EXAMPLE PROGRAMS
Davis King's avatar
Davis King committed
8
   Go into the examples folder and type:
9
10
   mkdir build; cd build; cmake .. ; cmake --build .

Davis King's avatar
Davis King committed
11
12
   That will build all the examples.  There is nothing to install when using
   dlib.  It's just a folder of source files.  
13
14

RUNNING THE UNIT TEST SUITE
Davis King's avatar
Davis King committed
15
16
17
18
19
20
21
22
23
24
25
   Type the following to compile and run the dlib unit test suite:
       cd dlib/test
       mkdir build
       cd build
       cmake ..
       cmake --build . --config Release
       ./test --runall

   Note that on windows your compiler might put the test executable in a
   subfolder called Release.  If that's the case then you have to go to that
   folder before running the test.
26
27

DOCUMENTATION
Davis King's avatar
Davis King committed
28
29
30
31
32
   The source control repository doesn't contain finished documentation.  The
   stuff in the docs folder is just a bunch of scripts and xml files used to
   generate the documentation.  There is a readme in docs/README.txt which
   discusses how to do this.  However, unless you are trying to modify the
   documentation, you should just download a copy from http://dlib.net.