Torque3D/Tools/projectGenerator/templates/vc2010_fileRecurseCSharp.tpl
2012-09-19 11:22:58 -04:00

9 lines
336 B
Smarty

{if is_array($dirWalk)}
{foreach from=$dirWalk item=dir key=key}
{include file="vc2010_fileRecurseCSharp.tpl" dirWalk=$dir dirName=$key dirPath="$dirPath$dirName/" depth=$depth+1}
{/foreach}
{else}
<Compile Include="{$dirWalk->path|replace:'/':'\\'}" >
<Link>{$dirWalk->path|replace:'../':''|replace:'/':'\\'}</Link>
</Compile>
{/if}