diff src/build/frankenbuild.d @ 9:05c88622db6b default tip

- Adhoc transcoder now doesn't rely on Platinum - Moved the adhoc transcoder to the main source tree; it can be moved back into test once it's more stable
author fraserofthenight
date Tue, 14 Jul 2009 22:04:05 -0700
parents 270343d824ae
children
line wrap: on
line diff
--- a/src/build/frankenbuild.d	Sun Jul 12 03:49:39 2009 -0700
+++ b/src/build/frankenbuild.d	Tue Jul 14 22:04:05 2009 -0700
@@ -64,25 +64,24 @@
     if(cats.contains("transcode"))
     {
     	targetFound = true;
-    	 cats ~= "platif-debug";
 	    char[] cargs = cbase.dup;
 	    cargs ~= " -g";
 	    cargs ~= " -debug -debug=AVBuffer";
 	    cargs ~= " -ofhoofbaby-d/transcode.exe";
 	    cargs ~= " -I../src/test";
-	    cargs ~= " -oqobjs/debug";
-	    cargs ~= " ../src/test/hoofbaby/test/adhoc/transcode.d";
-	    commands ~= { return cpp("../src/platif/platif.h", "../src/impl/hoofbaby/platinum/platif.d"); };
+	    cargs ~= " -oqobjs/transcode";
+	    cargs ~= " ../src/impl/hoofbaby/app/transcode.d";
 	    commands ~= { return rebuild(cargs); };
     }
 	
-	if(cats.contains("debug"))
+	/+ if(cats.contains("debug"))
 	{
 	    targetFound = true;
 	    cats ~= "platif-debug";
 	    char[] cargs = cbase.dup;
 	    cargs ~= " -g";
 	    cargs ~= " -debug -debug=AVBuffer";
+    	cargs ~= " -version=UPnP";
 	    cargs ~= " -ofhoofbaby-d/hoofbaby.exe";
 	    cargs ~= " -oqobjs/debug";
 	    cargs ~= " ../src/impl/hoofbaby/app/main.d";
@@ -96,13 +95,14 @@
 	    cats ~= "platif-release";
 	    char[] cargs = cbase.dup;
 	    cargs ~= " -O -inline";
+    	cargs ~= " -version=UPnP";
 	    cargs ~= " -ofhoofbaby/hoofbaby.exe";
 	    cargs ~= " -oqobjs/release";
 	    cargs ~= " ../src/impl/hoofbaby/app/main.d";
 	    commands ~= { return cpp("../src/platif/platif.h", "../src/impl/hoofbaby/platinum/platif.d"); };
 	    commands ~= { return rebuild(cargs); };
 	    commands ~= { return upx("hoofbaby/hoofbaby.exe"); };// D executables are enormous
-    }
+    } +/
 	
 	if(cats.contains("platif-debug"))
 	{