mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-04-21 22:01:19 +02:00
10 lines
175 B
Python
10 lines
175 B
Python
# -*- mode:python; coding:utf-8; -*-
|
|
|
|
env=Environment({})
|
|
|
|
change = ARGUMENTS.get('change', 0)
|
|
if int(change):
|
|
env.Append(DFLAGS = '-I.')
|
|
|
|
env.Program('proj', ['main.d'])
|