diff options
| author | Rémi Verschelde | 2016-04-02 20:26:12 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-04-02 20:26:12 +0200 |
| commit | 0a5472e697dee57956c2583a50bc5cf5faada5d8 (patch) | |
| tree | 62e9d9616c9529cee5c6c85e18415bc8745966fe /platform/flash/detect.py | |
| parent | 48f057ea816f4ae4b917cb110e399fcbfb4234a0 (diff) | |
| download | godot-0a5472e697dee57956c2583a50bc5cf5faada5d8.tar.gz godot-0a5472e697dee57956c2583a50bc5cf5faada5d8.tar.zst godot-0a5472e697dee57956c2583a50bc5cf5faada5d8.zip | |
Diffstat (limited to 'platform/flash/detect.py')
| -rw-r--r-- | platform/flash/detect.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/platform/flash/detect.py b/platform/flash/detect.py index f079f21fd..7f558a2b7 100644 --- a/platform/flash/detect.py +++ b/platform/flash/detect.py @@ -4,7 +4,7 @@ import string def is_active(): return True - + def get_name(): return "Flash" @@ -18,7 +18,7 @@ def can_build(): def get_opts(): return [] - + def get_flags(): @@ -52,7 +52,7 @@ def configure(env): if (ccroot.find("/cygdrive")==0): unit = ccroot[ ccroot.find("/") + 1 ] ccroot=ccroot.replace("/cygdrive/"+unit,unit+":") - + env['FLASCC_ROOT'] = ccroot if env['PLATFORM'] == 'win32': import methods @@ -71,11 +71,11 @@ def configure(env): env['AR'] = ccroot+'/sdk/usr/bin/ar' env['LINK'] = ccroot+'/sdk/usr/bin/gcc' - + env['OBJSUFFIX'] = ".fl.o" env['LIBSUFFIX'] = ".fl.a" env['PROGSUFFIX'] = "_flash" - + #env["CXX"]='gcc-4' import string #include path |
