mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-03-14 18:48:58 +01:00
14 lines
167 B
Plaintext
14 lines
167 B
Plaintext
|
# -*- coding:utf-8; -*-
|
||
|
|
||
|
import os
|
||
|
|
||
|
environment = Environment(
|
||
|
tools=['{}', 'link'],
|
||
|
)
|
||
|
|
||
|
environment.ProgramAllAtOnce('project', [
|
||
|
'main.d',
|
||
|
'amod.d',
|
||
|
'bmod.d',
|
||
|
])
|