summaryrefslogtreecommitdiffstats
path: root/test/midl.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-11-21 00:41:12 (GMT)
committerSteven Knight <knight@baldmt.com>2004-11-21 00:41:12 (GMT)
commit9121165c1f6de68d4c2e8701083de04dfcf2ddc3 (patch)
tree9c21395a4d49fd3aba7a22fe8e93b041445b00b3 /test/midl.py
parentac44b9e4c5ba049e38fc0609670322faa6503443 (diff)
downloadSCons-9121165c1f6de68d4c2e8701083de04dfcf2ddc3.zip
SCons-9121165c1f6de68d4c2e8701083de04dfcf2ddc3.tar.gz
SCons-9121165c1f6de68d4c2e8701083de04dfcf2ddc3.tar.bz2
Miscellaneous fixes: portability and version fixes, missing , better CXXCOM tests, ATL include directories, intelc Tool import.
Diffstat (limited to 'test/midl.py')
-rw-r--r--test/midl.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/midl.py b/test/midl.py
index cf80044..a41ac01 100644
--- a/test/midl.py
+++ b/test/midl.py
@@ -43,7 +43,9 @@ test.write('SConstruct',"""
import os.path
import os
-env = Environment(CCFLAGS = ' -nologo ', CPPPATH='${TARGET.dir}')
+env = Environment(CCFLAGS = ' -nologo ',
+ CPPPATH = '${TARGET.dir}',
+ MSVS_USE_MFC_DIRS = 1)
Export('env')
BuildDir('build', 'src')