diff options
author | Steven Knight <knight@baldmt.com> | 2003-06-08 13:22:57 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-06-08 13:22:57 (GMT) |
commit | 4d7ed00302f2f872f9719125b4fcb048e4ecb7ef (patch) | |
tree | 4afaba4669ddae8c3ce9972f79471d8387930e87 /test/import.py | |
parent | 8fc3c77d320fb435cb9268d31c34a58b18a58b54 (diff) | |
download | SCons-4d7ed00302f2f872f9719125b4fcb048e4ecb7ef.zip SCons-4d7ed00302f2f872f9719125b4fcb048e4ecb7ef.tar.gz SCons-4d7ed00302f2f872f9719125b4fcb048e4ecb7ef.tar.bz2 |
Add MSVS Project file support. (Greg Spencer)
Diffstat (limited to 'test/import.py')
-rw-r--r-- | test/import.py | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/test/import.py b/test/import.py index d66658b..8dc3682 100644 --- a/test/import.py +++ b/test/import.py @@ -45,38 +45,61 @@ x = SCons.Platform.%s.generate tools = [ # Can't import '386asm' directly due to initial '3' syntax error... + 'aixcc', + 'aixf77', + 'aixlink', 'ar', 'as', + 'BitKeeper', 'cc', + 'CVS', 'default', 'dvipdf', 'dvips', + 'f77', + # Can't import 'g++' directly due to '+' syntax error... 'g77', 'gas', 'gcc', 'gnulink', - # Can't import 'g++' directly due to '+' syntax error... + 'gs', + 'hpcc', + 'hplink', 'icc', 'ifl', 'ilink', + 'jar', + 'javac', + 'javah', 'latex', 'lex', 'link', # Can't import 'linkloc' everywhere due to Windows registry dependency... 'masm', + 'midl', 'mingw', 'mslib', 'mslink', 'msvc', + 'msvs', 'nasm', 'pdflatex', 'pdftex', + 'Perforce', + 'RCS', + 'rmic', + 'SCCS', 'sgiar', 'sgicc', 'sgilink', + 'sunar', + 'suncc', + 'sunlink', + 'Subversion', 'tar', 'tex', 'yacc', + 'zip', ] for tool in tools: |