-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinding.gyp
More file actions
97 lines (97 loc) · 3 KB
/
binding.gyp
File metadata and controls
97 lines (97 loc) · 3 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"targets": [{
"target_name": "blinkDetector",
'include_dirs': [
'.',
'/user/local/lib',
],
'cflags': [
'-std=c++11',
],
'cflags!': [ '-fno-exceptions'],
'cflags_cc!': [ '-fno-exceptions'],
'conditions': [
['OS=="mac"', {
'xcode_settings': {
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
"GCC_ENABLE_CPP_RTTI": 'YES'
}
}]
],
'link_settings': {
'libraries': [
'-I/usr/local/Cellar/opencv/3.4.1_5/include/opencv',
'-I/usr/local/Cellar/opencv/3.4.1_5/include',
'-L/usr/local/Cellar/opencv/3.4.1_5/lib',
'-lopencv_stitching',
'-lopencv_superres',
'-lopencv_videostab',
'-lopencv_aruco',
'-lopencv_bgsegm',
'-lopencv_bioinspired',
'-lopencv_ccalib',
'-lopencv_dnn_objdetect',
'-lopencv_dpm',
'-lopencv_face',
'-lopencv_photo',
'-lopencv_fuzzy',
'-lopencv_hfs',
'-lopencv_img_hash',
'-lopencv_line_descriptor',
'-lopencv_optflow',
'-lopencv_reg',
'-lopencv_rgbd',
'-lopencv_saliency',
'-lopencv_stereo',
'-lopencv_structured_light',
'-lopencv_phase_unwrapping',
'-lopencv_surface_matching',
'-lopencv_tracking',
'-lopencv_datasets',
'-lopencv_dnn',
'-lopencv_plot',
'-lopencv_xfeatures2d',
'-lopencv_shape',
'-lopencv_video',
'-lopencv_ml',
'-lopencv_ximgproc',
'-lopencv_calib3d',
'-lopencv_features2d',
'-lopencv_highgui',
'-lopencv_videoio',
'-lopencv_flann',
'-lopencv_xobjdetect',
'-lopencv_imgcodecs',
'-lopencv_objdetect',
'-lopencv_xphoto',
'-lopencv_imgproc',
'-lopencv_core'
]
},
"sources": [
"./cv/module.cpp"
]
}, {
"target_name": "letterPredictor",
'include_dirs': [
'.',
'/user/local/lib',
],
'cflags': [
'-std=c++11',
],
'cflags!': [ '-fno-exceptions'],
'cflags_cc!': [ '-fno-exceptions'],
'conditions': [
['OS=="mac"', {
'xcode_settings': {
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
"GCC_ENABLE_CPP_RTTI": 'YES'
}
}]
],
"sources": [
"./predictive/letterPredictor.cpp"
]
}]
}