forked from ncheney/ocr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJamroot
More file actions
57 lines (48 loc) · 945 Bytes
/
Jamroot
File metadata and controls
57 lines (48 loc) · 945 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
45
46
47
48
49
50
51
52
53
54
55
56
57
import os ;
local HOME = [ os.environ HOME ] ;
use-project /libea : ../ealib/libea ;
#exe ocr-island :
# src/ocr_island.cpp
# src/mnist.cpp
# /libea//libea
# /libea//libea_runner
# /libmkv//libmkv
# : <include>./include <link>static
# ;
lib liblidx :
lidx/lidx.cpp
/boost//iostreams
/site-config//z
: <link>static
:
: <include>lidx
;
exe lidx-info :
lidx/info.cpp
liblidx
/boost//iostreams
;
exe lidx-merge :
lidx/merge.cpp
liblidx
/boost//iostreams
;
exe lidx-split :
lidx/split.cpp
liblidx
/boost//iostreams
;
exe lidx-sample :
lidx/sample.cpp
liblidx
/boost//iostreams
;
exe ocr-lidx :
src/ocr_lidx.cpp
liblidx
/libea//libea
/libea//libea_runner
/libmkv//libmkv
: <include>./include <link>static
;
install dist : ocr-lidx lidx-info lidx-merge lidx-sample lidx-split : <location>$(HOME)/bin ;