added release.txt blurb. Fixed spelling typo in Defaults.xml
[scons.git] / test / ninja / ninja_test_sconscripts / sconstruct_mingw_command_generator_action
blob475fca7ae190c11b74428900615c29f5814ceb5b
1 # SPDX-License-Identifier: MIT
3 # Copyright The SCons Foundation
5 SetOption('experimental','ninja')
6 DefaultEnvironment(tools=[])
8 env = Environment(tools=['mingw'])
9 env.Tool('ninja')
10 dll = env.SharedLibrary(target='test_impl', source='test_impl.c')
11 env.Program(target='test', source='test1.c', LIBS=[dll])