From 016b79f0ea1f28502698c23dab24d33d8311840e Mon Sep 17 00:00:00 2001 From: bank Date: Sun, 23 Sep 2012 13:50:03 +0400 Subject: [PATCH] Updating build targets of ProjectGen, so we include only files needed for 'make'. --- Tools/projectGenerator/btargets/targets.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tools/projectGenerator/btargets/targets.inc b/Tools/projectGenerator/btargets/targets.inc index 248eba6d8..5637164aa 100644 --- a/Tools/projectGenerator/btargets/targets.inc +++ b/Tools/projectGenerator/btargets/targets.inc @@ -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("");