blob: a6a9b80049e9a7bef65f446c1ba66675f0c2fb88 (
plain)
1
2
3
4
5
6
7
8
9
|
# SPDX-License-Identifier: MIT
#
# Copyright The SCons Foundation
import os
DefaultEnvironment(tools=[])
environment = Environment(tools=['link', '{}'])
environment.Program('helloWorld.d')
|