work on buildsystem to allow double precision visual build setting in autogenerated visual studion projectfiles

This commit is contained in:
ejcoumans
2006-12-23 06:53:51 +00:00
parent fbcbc7021c
commit bba68d6072
4 changed files with 45 additions and 6 deletions

View File

@@ -99,13 +99,18 @@
OutputFile="[% path([my.doc.buildroot.0, my.doc.target.0]) %]"
[% END %]
[% MACRO linker_app(subsys) BLOCK -%]
[% linker_common -%]
SubSystem="[% subsys %]"
[% MACRO linker_app(subsys,prefix) BLOCK -%]
[% END %]
[% MACRO linker_appcon GET linker_app(1) %]
[% MACRO linker_appgui_release GET linker_app(2) %]
[% MACRO linker_appgui_debug GET linker_app(1) %]
[% MACRO linker_appgui_release BLOCK -%]
OutputFile="[% path([my.doc.buildroot.0, glue([ 'Release_',my.doc.target.0])]) %]"
SubSystem="1"
[% END %]
[% MACRO linker_appgui_debug BLOCK -%]
OutputFile="[% path([my.doc.buildroot.0, glue([ 'Debug_',my.doc.target.0])]) %]"
SubSystem="2"
[% END %]
[% MACRO linker_plugin BLOCK -%]
[% linker_common -%]