mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-24 21:13:53 +08:00
6 lines
186 B
Python
6 lines
186 B
Python
|
|
Import('env', 'common')
|
||
|
|
|
||
|
|
lenv = env.Clone()
|
||
|
|
lenv["CCFLAGS"] = [f for f in env["CCFLAGS"] if f != "-Wunused"]
|
||
|
|
lenv.Program('rat', ['rat.cc'], LIBS=[common, 'diag', 'time_genoff', 'zmq'])
|