pre-merge commit

This commit is contained in:
Joseph Eagar
2010-01-11 23:09:46 +00:00
parent 73852e75d1
commit ed12e1978f
2 changed files with 3 additions and 2 deletions

View File

@@ -45,7 +45,7 @@
#include "WM_api.h"
#include "WM_types.h"
//bleh
EnumPropertyItem object_mode_items[] = {
{OB_MODE_OBJECT, "OBJECT", ICON_OBJECT_DATAMODE, "Object", ""},
{OB_MODE_EDIT, "EDIT", ICON_EDITMODE_HLT, "Edit", ""},

View File

@@ -730,9 +730,10 @@ class BlenderEnvironment(SConsEnvironment):
lenv.Append(LIBS = lenv['BF_QUICKTIME_LIB'])
lenv.Append(LIBPATH = lenv['BF_QUICKTIME_LIBPATH'])
prog = lenv.Program(target=builddir+'bin/'+progname, source=sources)
#needed for incremental linking
if lenv['OURPLATFORM'] == 'win32-vc': prog = lenv.Precious(prog)
if lenv['BF_DEBUG'] and lenv['OURPLATFORM']=='win32-vc' and lenv['BF_BSC']:
f = lenv.File(progname + '.bsc', builddir)
brs = lenv.Command(f, prog, [bsc])