From e493a3d34b1757edde2dca5cb6f2575c532d1968 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sat, 24 Sep 2016 19:11:04 +0000 Subject: [PATCH] Oh, everything is different on Windows. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3347 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 5b1765be..edae28e4 100644 --- a/SConstruct +++ b/SConstruct @@ -31,7 +31,7 @@ if sys.platform == 'win32': env.Append(CXXFLAGS=['/EHsc', '/MT', '/Zi', '/Gy']) env.Append(CFLAGS=['/EHsc', '/MT', '/Zi', '/Gy']) env.Append(LIBPATH=[ - os.path.join(v8, 'out/Release/lib'), + os.path.join(v8, 'build/Release/lib'), os.path.join(uv, 'Release/lib'), ]) env.Append(LINKFLAGS=['/RELEASE', '/OPT:REF', '/OPT:ICF'])