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

@@ -121,6 +121,20 @@ builds = [
libdirskey => 'libdir',
priority => 100
},
{
tag => 'release_dbl',
name => 'ReleaseDoublePrecision',
defines => ['NDEBUG','BT_USE_DOUBLE_PRECISION'],
snpreprocessor => 'SN_TARGET_PS3;NDEBUG;__GCC__',
snadditional => '-O2 -Wall -fno-exceptions',
defineskey => 'define',
cflagskey => 'cflags',
incdirskey => 'include',
lflagskey => 'lflags',
libskey => 'library',
libdirskey => 'libdir',
priority => 100
},
{
tag => 'debug',
name => 'Debug',
@@ -134,7 +148,23 @@ builds = [
libskey => 'librarydebug',
libdirskey => 'libdirdebug',
priority => 200
}
},
{
tag => 'debug_dbl',
name => 'DebugDoublePrecision',
defines => ['_DEBUG','BT_USE_DOUBLE_PRECISION'],
snpreprocessor => 'SN_TARGET_PS3;_DEBUG;__GCC__',
snadditional => '-g -O0 -Wall -fno-exceptions',
defineskey => 'definedebug',
cflagskey => 'cflagsdebug',
incdirskey => 'includedebug',
lflagskey => 'lflagsdebug',
libskey => 'librarydebug',
libdirskey => 'libdirdebug',
priority => 200
},
];
#------------------------------------------------------------------------------