diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-05-08 22:22:20 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-05-08 22:22:20 +0200 |
commit | 32afcbc48258ea970ef4b0707f69543baf0f2f5a (patch) | |
tree | 1de39c43391806058ee1f9da416f426475c2e5e3 /platform/bb10/SCsub | |
parent | bba8f1db307459988385faa4e79fd4aace397e36 (diff) |
Put brave old bb10 platform to a well-deserved rest
Add some 🔥 to appease @reduz. Fixes #8692.
Diffstat (limited to 'platform/bb10/SCsub')
-rw-r--r-- | platform/bb10/SCsub | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/platform/bb10/SCsub b/platform/bb10/SCsub deleted file mode 100644 index c19f46d579..0000000000 --- a/platform/bb10/SCsub +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env python - -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) |