7 lines
135 B
PHP
7 lines
135 B
PHP
|
|
||
|
def get_edje_fpu_setting(bb, d):
|
||
|
if d.getVar('TARGET_FPU', 1) in [ 'soft' ]:
|
||
|
return "--enable-fixed-point"
|
||
|
return ""
|
||
|
|