summaryrefslogtreecommitdiffstats
path: root/test/IDL
diff options
context:
space:
mode:
Diffstat (limited to 'test/IDL')
-rw-r--r--test/IDL/midl.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/IDL/midl.py b/test/IDL/midl.py
index 810edc1..88e0517 100644
--- a/test/IDL/midl.py
+++ b/test/IDL/midl.py
@@ -44,8 +44,7 @@ test.write('SConstruct',"""
import os.path
import os
-env = Environment(CCFLAGS = ' -nologo ',
- CPPPATH = '${TARGET.dir}',
+env = Environment(CPPPATH = '${TARGET.dir}',
MSVS_USE_MFC_DIRS = 1)
Export('env')
@@ -75,7 +74,7 @@ local.TypeLibrary('bar.idl')
local.SharedLibrary(target = 'bar.dll',
source = barsrc,
- PCH=local.PCH('BarPCH.cpp')[0],
+ PCH=local.PCH('BarPCH.cpp', CXXFLAGS='/nologo')[0],
PCHSTOP = 'BarPCH.h',
register=1)
""")