-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJamroot
More file actions
34 lines (29 loc) · 700 Bytes
/
Jamroot
File metadata and controls
34 lines (29 loc) · 700 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
import os ;
local HOME = [ os.environ HOME ] ;
use-project /libea : ../ealib/libea ;
use-project /libfn : ../ealib/libfn ;
exe ocr-single :
src/ocr_single.cpp
src/ocr_game.cpp
/libea//libea
/libea//libea_runner
/libfn//libfn
: <include>./include <link>static
;
exe ocr-multi :
src/ocr_multi.cpp
src/ocr_game.cpp
/libea//libea
/libea//libea_runner
/libfn//libfn
: <include>./include <link>static
;
exe ocr-novelty :
src/ocr_novelty.cpp
src/ocr_game.cpp
/libea//libea
/libea//libea_runner
/libfn//libfn
: <include>./include <link>static
;
install dist : ocr-single ocr-multi ocr-novelty : <location>$(HOME)/bin ;