(settings)
| 36 | |
| 37 | |
| 38 | def get_lib_name(settings): |
| 39 | formats = '-'.join(sorted(get_formats(settings))) |
| 40 | |
| 41 | libname = 'libSDL2_image' |
| 42 | if formats: |
| 43 | libname += '-' + formats |
| 44 | if settings.PTHREADS: |
| 45 | libname += '-mt' |
| 46 | if settings.SUPPORT_LONGJMP == 'wasm': |
| 47 | libname += '-wasm-sjlj' |
| 48 | return libname + '.a' |
| 49 | |
| 50 | |
| 51 | def get(ports, settings, shared): |
no test coverage detected