summaryrefslogtreecommitdiffstats
path: root/test/module.rules
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2018-06-05 08:50:03 -0700
committerJohn Stebbins <[email protected]>2018-06-05 09:35:27 -0700
commitde0f25816c7e6e04e1e5e4cfea9a0da75eff3822 (patch)
tree6e364bc050bd913be50b5ad1b9e6dbeab7695e5f /test/module.rules
parentdd4017b3f8651c945585f0e1553d2195795048ca (diff)
CLI: add flatpak manifest
Diffstat (limited to 'test/module.rules')
-rw-r--r--test/module.rules6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/module.rules b/test/module.rules
index d9bd8434b..679135074 100644
--- a/test/module.rules
+++ b/test/module.rules
@@ -16,8 +16,14 @@ test.install-strip: | $(dir $(TEST.install.exe))
$(CP.exe) $(TEST.exe) $(TEST.install.exe)
$(STRIP.exe) $(TEST.install.exe)
+ifeq (1,$(FEATURE.flatpak))
+test.install: | $(dir $(TEST.install.appdata))
+endif
test.install: | $(dir $(TEST.install.exe))
$(CP.exe) $(TEST.exe) $(TEST.install.exe)
+ifeq (1,$(FEATURE.flatpak))
+ $(CP.exe) $(TEST.appdata) $(TEST.install.appdata)
+endif
test.uninstall:
$(RM.exe) -f $(TEST.install.exe)