diff options
Diffstat (limited to 'vcpkg/scripts/test_ports/vcpkg-ci-vcpkg-make/vcpkg.json')
| -rw-r--r-- | vcpkg/scripts/test_ports/vcpkg-ci-vcpkg-make/vcpkg.json | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/vcpkg/scripts/test_ports/vcpkg-ci-vcpkg-make/vcpkg.json b/vcpkg/scripts/test_ports/vcpkg-ci-vcpkg-make/vcpkg.json new file mode 100644 index 0000000..ecd76d4 --- /dev/null +++ b/vcpkg/scripts/test_ports/vcpkg-ci-vcpkg-make/vcpkg.json @@ -0,0 +1,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" + } + } +} |