-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsledpkg.json
100 lines (100 loc) · 2.92 KB
/
sledpkg.json
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
98
99
100
{
"version": "0.1.2",
"packages": [
{
"name": "imgui",
"url": "https://github.com/ocornut/imgui",
"license": "Copyright (c) 2014-2022 Omar Cornut, MIT License",
"version":
{
"branch": "docking"
},
"mirror":
{
"use": true,
"url": "https://gitee.com/mirrors/imgui"
}
},
{
"name": "portable-file-dialogs",
"url": "https://github.com/samhocevar/portable-file-dialogs",
"license": "WTFPL license",
"version":
{
"branch": "master"
}
},
{
"name": "glfw",
"url": "https://github.com/glfw/glfw",
"license": "Zlib license",
"version":
{
"branch": "master"
},
"mirror":
{
"use": true,
"url": "https://gitee.com/mirrors/glfw"
}
},
{
"name": "googletest",
"url": "https://github.com/google/googletest",
"version":
{
"tag": "release-1.11.0"
},
"mirror":
{
"use": false,
"url": "https://gitee.com/mirrors/googletest"
},
"cmake_args": {
"configure":
[
"-DCMAKE_BUILD_TYPE=Release",
"-DBUILD_GMOCK=OFF",
"-DCMAKE_POSITION_INDEPENDENT_CODE=ON"
]
}
},
{
"name": "opencv",
"url": "https://github.com/opencv/opencv",
"license": "Apache License 2.0",
"version":
{
"tag": "4.5.5"
},
"mirror":
{
"use": true,
"url": "https://gitee.com/mirrors/opencv"
},
"cmake_args": {
"configure":
[
"-G Ninja",
"-D CMAKE_BUILD_TYPE=Release",
"-D BUILD_SHARED_LIBS=OFF",
"-D OPENCV_GENERATE_PKGCONFIG=ON",
"-D BUILD_LIST=core,imgproc,highgui,gapi",
"-D BUILD_TESTS=OFF",
"-D BUILD_PERF_TESTS=OFF",
"-D WITH_CUDA=OFF",
"-D WITH_VTK=OFF",
"-D WITH_MATLAB=OFF",
"-D BUILD_DOCS=OFF",
"-D BUILD_opencv_python3=OFF",
"-D BUILD_opencv_python2=OFF",
"-D WITH_IPP=OFF",
"-D WITH_PROTOBUF=OFF",
"-D WITH_QUIRC=OFF",
"-D WITH_EIGEN=OFF",
"-D CV_DISABLE_OPTIMIZATION=OFF"
]
}
}
]
}