summaryrefslogtreecommitdiff
path: root/tests/plugins/show/src
diff options
context:
space:
mode:
authorruki <[email protected]>2026-04-20 17:35:48 +0800
committerGitHub <[email protected]>2026-04-20 17:35:48 +0800
commit55f8d448564f7cc198edb4db506ec7c18ca8f0f6 (patch)
tree6822b239d43091d20037a99b6ffa9fd7e449f1db /tests/plugins/show/src
parent3a1b4e1719ba50b259afa27b450f06c39548003d (diff)
parent4e3f6b16db88b9c1afad898a7f5dfeaecdfd0f27 (diff)
Merge pull request #7490 from xmake-io/show
Export target dependency graph as json/dot
Diffstat (limited to 'tests/plugins/show/src')
-rw-r--r--tests/plugins/show/src/core.c1
-rw-r--r--tests/plugins/show/src/main.c1
-rw-r--r--tests/plugins/show/src/net.c1
-rw-r--r--tests/plugins/show/src/ui.c1
4 files changed, 4 insertions, 0 deletions
diff --git a/tests/plugins/show/src/core.c b/tests/plugins/show/src/core.c
new file mode 100644
index 000000000..87a413095
--- /dev/null
+++ b/tests/plugins/show/src/core.c
@@ -0,0 +1 @@
+int core(void) { return 0; }
diff --git a/tests/plugins/show/src/main.c b/tests/plugins/show/src/main.c
new file mode 100644
index 000000000..78f2de106
--- /dev/null
+++ b/tests/plugins/show/src/main.c
@@ -0,0 +1 @@
+int main(void) { return 0; }
diff --git a/tests/plugins/show/src/net.c b/tests/plugins/show/src/net.c
new file mode 100644
index 000000000..abde7c554
--- /dev/null
+++ b/tests/plugins/show/src/net.c
@@ -0,0 +1 @@
+int net(void) { return 0; }
diff --git a/tests/plugins/show/src/ui.c b/tests/plugins/show/src/ui.c
new file mode 100644
index 000000000..c15794f4d
--- /dev/null
+++ b/tests/plugins/show/src/ui.c
@@ -0,0 +1 @@
+int ui(void) { return 0; }