diff options
Diffstat (limited to 'etc/imports')
-rw-r--r-- | etc/imports/gtest.TARGETS | 6 | ||||
-rw-r--r-- | etc/imports/libcurl.TARGETS | 6 | ||||
-rw-r--r-- | etc/imports/libs.TARGETS | 10 | ||||
-rw-r--r-- | etc/imports/libz.TARGETS | 6 | ||||
-rw-r--r-- | etc/imports/rules.TARGETS | 1 |
5 files changed, 29 insertions, 0 deletions
diff --git a/etc/imports/gtest.TARGETS b/etc/imports/gtest.TARGETS new file mode 100644 index 0000000..a9b2217 --- /dev/null +++ b/etc/imports/gtest.TARGETS @@ -0,0 +1,6 @@ +{ "tree": + { "type": "install" + , "dirs": [[["TREE", null, "."], "googletest"]] + , "tainted": ["test"] + } +} 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 new file mode 100644 index 0000000..57adf74 --- /dev/null +++ b/etc/imports/libs.TARGETS @@ -0,0 +1,10 @@ +{ "tree": + { "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"] + } +} diff --git a/etc/imports/rules.TARGETS b/etc/imports/rules.TARGETS new file mode 100644 index 0000000..73e1ff5 --- /dev/null +++ b/etc/imports/rules.TARGETS @@ -0,0 +1 @@ +{"tree": {"type": "install", "dirs": [[["TREE", null, "."], "rules"]], "tainted": ["test"]}} |