diff options
author | Sascha Roloff <sascha.roloff@huawei.com> | 2023-05-30 19:05:56 +0200 |
---|---|---|
committer | Sascha Roloff <sascha.roloff@huawei.com> | 2023-05-31 13:09:29 +0200 |
commit | 06e3d7e45db8edcac37b5ba34837e8ddab4d549f (patch) | |
tree | fbbb0f6c5412c966871224dfc88fe45f32cad750 /etc/imports | |
parent | a56a6ebae4a116486df48d96705cc8c8b8d81857 (diff) | |
download | rules-cc-06e3d7e45db8edcac37b5ba34837e8ddab4d549f.tar.gz |
Add testcase for cmake dependencies
Diffstat (limited to 'etc/imports')
-rw-r--r-- | etc/imports/libcurl.TARGETS | 6 | ||||
-rw-r--r-- | etc/imports/libs.TARGETS | 9 | ||||
-rw-r--r-- | etc/imports/libz.TARGETS | 6 |
3 files changed, 20 insertions, 1 deletions
diff --git a/etc/imports/libcurl.TARGETS b/etc/imports/libcurl.TARGETS new file mode 100644 index 0000000..f33a101 --- /dev/null +++ b/etc/imports/libcurl.TARGETS @@ -0,0 +1,6 @@ +{ "tree": + { "type": "install" + , "dirs": [[["TREE", null, "."], "libcurl"]] + , "tainted": ["test"] + } +} diff --git a/etc/imports/libs.TARGETS b/etc/imports/libs.TARGETS index f455122..57adf74 100644 --- a/etc/imports/libs.TARGETS +++ b/etc/imports/libs.TARGETS @@ -1,3 +1,10 @@ { "tree": - {"type": "tree", "deps": [["@", "gtest", "", "tree"]], "tainted": ["test"]} + { "type": "tree" + , "deps": + [ ["@", "gtest", "", "tree"] + , ["@", "libz", "", "tree"] + , ["@", "libcurl", "", "tree"] + ] + , "tainted": ["test"] + } } diff --git a/etc/imports/libz.TARGETS b/etc/imports/libz.TARGETS new file mode 100644 index 0000000..5b5ef8f --- /dev/null +++ b/etc/imports/libz.TARGETS @@ -0,0 +1,6 @@ +{ "tree": + { "type": "install" + , "dirs": [[["TREE", null, "."], "libz"]] + , "tainted": ["test"] + } +} |