mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
Files are essentially just copied from the 2010 version with slight tweaks, works without any warnings or errors.
9 lines
336 B
Smarty
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} |