summaryrefslogtreecommitdiff
path: root/build/env.py
blob: 46d069cfcf719239707123e2aa070b56a2105c0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import os

env = Environment(
    ENV = os.environ,
    LAKS_PATH = Dir('..'),

    toolpath = ['scons_tools'],
    tools = [
        'default',
        'tool_selectmcu',
        'tool_firmware',
        'tool_jinja2',
        'tool_platform_spec',
        'tool_protonium',
    ],
)

Return('env')