diff options
author | Steven Knight <knight@baldmt.com> | 2009-02-22 08:17:49 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2009-02-22 08:17:49 (GMT) |
commit | 9be901392ae6a13ebe2590e1d1c61adf4f0d7172 (patch) | |
tree | 964056a467170f6a9064b72a6a58f9cdc5e79556 /test/Fortran/link-with-cxx.py | |
parent | 140cb569328ee9904e7339932502307d035a8ee0 (diff) | |
download | SCons-9be901392ae6a13ebe2590e1d1c61adf4f0d7172.zip SCons-9be901392ae6a13ebe2590e1d1c61adf4f0d7172.tar.gz SCons-9be901392ae6a13ebe2590e1d1c61adf4f0d7172.tar.bz2 |
Set IncludeSearchPath and PreprocessorDefinitions in the generation
project files for Visual Studio 8.0. (Allan Erskine)
Diffstat (limited to 'test/Fortran/link-with-cxx.py')
-rw-r--r-- | test/Fortran/link-with-cxx.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Fortran/link-with-cxx.py b/test/Fortran/link-with-cxx.py index a29558e..8d05c5c 100644 --- a/test/Fortran/link-with-cxx.py +++ b/test/Fortran/link-with-cxx.py @@ -70,7 +70,8 @@ def copier(target, source, env): s = str(source[0]) t = str(target[0]) open(t, 'wb').write(open(s, 'rb').read()) -env = Environment(CXX = r'%(_python_)s test_linker.py', +env = Environment(tools = ['gcc', 'gnulink', 'fortran'], + CXX = r'%(_python_)s test_linker.py', CXXCOM = Action(copier), SMARTLINK = SCons.Tool.link.smart_link, LINK = r'$SMARTLINK', |