399b1b0474
- Removed trailing spaces - Made sure all indentation is done using tabs (fixes #39) - Potentially fixed an identation issue for openssl check
21 lines
403 B
Text
21 lines
403 B
Text
Import('env')
|
|
|
|
bb10_lib = [
|
|
|
|
'bbutil.c',
|
|
'os_bb10.cpp',
|
|
'audio_driver_bb10.cpp',
|
|
'godot_bb10.cpp',
|
|
'payment_service.cpp',
|
|
]
|
|
|
|
env_bps = env.Clone()
|
|
if env['bb10_payment_service'] == "yes":
|
|
env_bps.Append(CPPFLAGS=['-DPAYMENT_SERVICE_ENABLED'])
|
|
|
|
if env['bb10_lgles_override'] == "yes":
|
|
env_bps.Append(CPPFLAGS=['-DBB10_LGLES_OVERRIDE'])
|
|
|
|
|
|
prog = None
|
|
prog = env_bps.Program('#bin/godot', bb10_lib)
|