diff options
author | Steven Knight <knight@baldmt.com> | 2004-11-21 00:41:12 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-11-21 00:41:12 (GMT) |
commit | 9121165c1f6de68d4c2e8701083de04dfcf2ddc3 (patch) | |
tree | 9c21395a4d49fd3aba7a22fe8e93b041445b00b3 /test/midl.py | |
parent | ac44b9e4c5ba049e38fc0609670322faa6503443 (diff) | |
download | SCons-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.py | 4 |
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') |