mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-03-12 18:38:59 +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',
|
|
])
|