changed Generator to T3D_Generator to prevent problems with newer php versions

This commit is contained in:
Thomas Fischer 2014-03-14 19:58:23 +01:00
parent 39b893f1ca
commit 9b49f56bd6
26 changed files with 160 additions and 160 deletions

View file

@ -70,7 +70,7 @@ if ( $argc >= 3 )
$torqueRoot = str_replace( "\\", "/", $argv[2] );
// Kick off the generator
Generator::init( $torqueRoot );
T3D_Generator::init( $torqueRoot );
// Ready to read our config file.
echo( " - Loading config file " . realpath($argv[1])."\n" );
@ -78,12 +78,12 @@ echo( " - Loading config file " . realpath($argv[1])."\n" );
require( $argv[ 1 ] );
// Generate all projects
Generator::generateProjects( $tpl );
T3D_Generator::generateProjects( $tpl );
// Now the solutions (if any)
$tpl->clear_all_cache();
Generator::generateSolutions( $tpl );
T3D_Generator::generateSolutions( $tpl );
// finally write out the sample.html for web deployment (if any)
WebPlugin::writeSampleHtml();