diff --git a/extra/automata/ui/deploy.factor b/extra/automata/ui/deploy.factor new file mode 100644 index 0000000000..eb261ed93f --- /dev/null +++ b/extra/automata/ui/deploy.factor @@ -0,0 +1,16 @@ +USING: tools.deploy.config ; +V{ + { strip-prettyprint? t } + { strip-globals? t } + { strip-word-props? t } + { strip-word-names? t } + { strip-dictionary? t } + { strip-debugger? t } + { strip-c-types? t } + { deploy-math? t } + { deploy-compiled? t } + { deploy-io? f } + { deploy-ui? t } + { "stop-after-last-window?" t } + { "bundle-name" "Cellular Automata.app" } +} diff --git a/extra/boids/ui/deploy.factor b/extra/boids/ui/deploy.factor new file mode 100644 index 0000000000..0b22fa5200 --- /dev/null +++ b/extra/boids/ui/deploy.factor @@ -0,0 +1,13 @@ +USING: tools.deploy.config ; +V{ + { strip-word-props? t } + { strip-word-names? t } + { strip-dictionary? t } + { strip-debugger? t } + { strip-c-types? t } + { deploy-math? t } + { deploy-compiled? t } + { deploy-io? f } + { deploy-ui? t } + { "bundle-name" "Boids.app" } +}