]> gitweb.factorcode.org Git - factor.git/commitdiff
Don't include threading support with hello-world; this reduces size by ~30kb
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Tue, 9 Dec 2008 01:18:03 +0000 (19:18 -0600)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Tue, 9 Dec 2008 01:18:03 +0000 (19:18 -0600)
extra/hello-world/deploy.factor

index 64ea481b030f0485346abfa0c59d2dbd96a7a8c6..48c14f7cbafd7cb091160ff1465008c43102e93c 100755 (executable)
@@ -1,14 +1,15 @@
 USING: tools.deploy.config ;
 H{
-    { deploy-unicode? f }
-    { deploy-reflection 1 }
-    { deploy-word-props? f }
-    { deploy-math? f }
     { deploy-name "Hello world (console)" }
-    { deploy-word-defs? f }
-    { "stop-after-last-window?" t }
+    { deploy-c-types? f }
+    { deploy-word-props? f }
     { deploy-ui? f }
+    { deploy-reflection 1 }
     { deploy-compiler? f }
+    { deploy-unicode? f }
     { deploy-io 2 }
-    { deploy-c-types? f }
+    { deploy-word-defs? f }
+    { deploy-threads? f }
+    { "stop-after-last-window?" t }
+    { deploy-math? f }
 }