mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
Updating build targets of ProjectGen, so we include only files needed for 'make'.
This commit is contained in:
parent
f65bb9c34f
commit
016b79f0ea
|
|
@ -153,7 +153,7 @@ $c = BuildTarget::add( 'Make', // Name
|
|||
|
||||
$c->setSolutionInfo( 'makeSolution.tpl', '', '' );
|
||||
|
||||
$c->setFileExtensions( 'c', 'cc', 'h', 'cpp', 'inl', 'asm' );
|
||||
$c->setFileExtensions( 'c', 'cc', 'cpp', 'asm' );
|
||||
|
||||
$c->setPlatforms( "linux" );
|
||||
|
||||
|
|
@ -175,7 +175,7 @@ $c = BuildTarget::add( 'Make Dedicated', // Name
|
|||
|
||||
$c->setSolutionInfo( 'makeSolution.tpl', '', '' );
|
||||
|
||||
$c->setFileExtensions( 'c', 'cc', 'h', 'cpp', 'inl', 'asm' );
|
||||
$c->setFileExtensions( 'c', 'cc', 'cpp', 'asm' );
|
||||
|
||||
$c->setPlatforms( "linux_dedicated" );
|
||||
|
||||
|
|
@ -197,7 +197,7 @@ $c = BuildTarget::add( 'build', // Name
|
|||
'', // ActiveX Project Template
|
||||
'.txt' );
|
||||
|
||||
$c->setFileExtensions( 'c', 'cc', 'h', 'cpp', 'inl', 'asm', 'm', 'mm' );
|
||||
$c->setFileExtensions( 'c', 'cc', 'cpp', 'asm', 'm', 'mm' );
|
||||
|
||||
// NO PLATFORMS - SO ALL OR NONE?
|
||||
$c->setPlatforms("");
|
||||
|
|
|
|||
Loading…
Reference in a new issue