]> gitweb.factorcode.org Git - factor.git/commitdiff
hello-ui and spheres can deploy without I/O
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Tue, 12 May 2009 09:18:50 +0000 (04:18 -0500)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Tue, 12 May 2009 09:18:50 +0000 (04:18 -0500)
extra/hello-ui/deploy.factor
extra/spheres/deploy.factor

index 7fcc167cea3feb733b5334bec34330ee12bc6802..784c34cf7076a509216b1d5ec5d4505d153ccce1 100644 (file)
@@ -1,14 +1,14 @@
 USING: tools.deploy.config ;
 H{
-    { deploy-ui? t }
-    { deploy-reflection 1 }
-    { deploy-unicode? f }
-    { deploy-math? t }
-    { deploy-io 2 }
     { deploy-c-types? f }
-    { deploy-name "Hello world" }
-    { deploy-word-props? f }
+    { deploy-unicode? f }
     { deploy-word-defs? f }
+    { deploy-name "Hello world" }
     { "stop-after-last-window?" t }
+    { deploy-reflection 1 }
+    { deploy-ui? t }
+    { deploy-math? t }
+    { deploy-io 1 }
+    { deploy-word-props? f }
     { deploy-threads? t }
 }
index df314317cf9744e1c56d111c4533ec3e0b512933..8c72e4a26ca260547cbe55519d36ef588ed2d301 100644 (file)
@@ -1,14 +1,14 @@
 USING: tools.deploy.config ;
 H{
-    { deploy-ui? t }
-    { deploy-reflection 1 }
-    { deploy-unicode? f }
-    { deploy-math? t }
-    { deploy-io 2 }
     { deploy-c-types? f }
-    { deploy-name "Spheres" }
-    { deploy-word-props? f }
+    { deploy-unicode? f }
     { deploy-word-defs? f }
+    { deploy-name "Spheres" }
     { "stop-after-last-window?" t }
+    { deploy-reflection 1 }
+    { deploy-ui? t }
+    { deploy-math? t }
+    { deploy-io 1 }
+    { deploy-word-props? f }
     { deploy-threads? t }
 }