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
|
{
"name": "vcpkg-ci-vcpkg-make",
"version-string": "ci",
"description": "Ensures that the vcpkg-make port functions are unit tested.",
"license": "MIT",
"dependencies": [
{
"name": "unit-test-cmake",
"host": true
},
{
"name": "vcpkg-make",
"host": true
}
],
"default-features": [
{
"name": "scripts-cl-cpp-wrapper",
"platform": "windows & !mingw"
},
{
"name": "vcpkg-make-cl-cpp-wrapper",
"platform": "windows & !mingw"
},
"z-vcpkg-make-normalize-arch",
"z-vcpkg-make-determine-host-arch",
"z-vcpkg-make-determine-target-arch",
"z-vcpkg-make-determine-target-triplet",
"z-vcpkg-make-get-configure-triplets",
"z-vcpkg-make-prepare-compile-flags",
"z-vcpkg-make-z-adapt-lib-link-names"
],
"features": {
"scripts-cl-cpp-wrapper": {
"description": "Test the cl_cpp_wrapper in scripts"
},
"vcpkg-make-cl-cpp-wrapper": {
"description": "Test the cl_cpp_wrapper in vcpkg-make"
},
"z-vcpkg-make-normalize-arch": {
"description": "Test the z_vcpkg_make_normalize_arch function"
},
"z-vcpkg-make-determine-host-arch": {
"description": "Test the z_vcpkg_make_determine_host_arch function"
},
"z-vcpkg-make-determine-target-arch": {
"description": "Test the z_vcpkg_make_determine_target_arch function"
},
"z-vcpkg-make-determine-target-triplet": {
"description": "Test the z_vcpkg_make_determine_target_arch triplet"
},
"z-vcpkg-make-get-configure-triplets": {
"description": "Test the z_vcpkg_make_get_configure_triplets function"
},
"z-vcpkg-make-get-crosscompiling": {
"description": "Test the z_vcpkg_make_get_crosscompiling function"
},
"z-vcpkg-make-prepare-compile-flags": {
"description": "Test the z_vcpkg_make_prepare_compile_flags function"
},
"z-vcpkg-make-z-adapt-lib-link-names": {
"description": "Test the z_vcpkg_make_z_adapt_lib_link_names function"
}
}
}
|