diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-10-10 00:03:33 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-10-15 11:50:39 +0200 |
commit | 16ba665db6bbd7f15aadc35fda87d69d0b220bf7 (patch) | |
tree | d7773cd17d8677f66fb37e821edf28a7375c097b /SConstruct | |
parent | 5fef84a1358310304cb1114924525ec4df794b49 (diff) |
jpg: Make it a module and split jpgd thirdparty files
Similar rationale as in previous commit.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct index acc6c2e248..3f2f1e5b23 100644 --- a/SConstruct +++ b/SConstruct @@ -128,7 +128,6 @@ opts.Add('theoralib','Theora Video (yes/no)','no') opts.Add('freetype','Freetype support in editor','builtin') opts.Add('xml','XML Save/Load support (yes/no)','yes') opts.Add('libpng','libpng library for image loader support (system/builtin)','builtin') -opts.Add('jpg','JPG Image loader support (yes/no)','yes') opts.Add('webp','WEBP Image loader support (yes/no)','yes') opts.Add('dds','DDS Texture loader support (yes/no)','yes') opts.Add('pvr','PVR (PowerVR) Texture loader support (yes/no)','yes') @@ -354,8 +353,6 @@ if selected_platform in platform_list: env.Append(CPPFLAGS=['-DDDS_ENABLED']); if (env['pvr']=='yes'): env.Append(CPPFLAGS=['-DPVR_ENABLED']); - if (env['jpg']=='yes'): - env.Append(CPPFLAGS=['-DJPG_ENABLED']); if (env['webp']=='yes'): env.Append(CPPFLAGS=['-DWEBP_ENABLED']); |