mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-07 05:21:55 +00:00
5 lines
136 B
Python
5 lines
136 B
Python
env = Environment()
|
|
x = ARGUMENTS.get('x', '0')
|
|
env.Append(CPPDEFINES=['X=' + x])
|
|
env.Program(target = 'main.out', source = ['main.c'])
|