SConscript 558 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. Import('RTT_ROOT')
  2. Import('rtconfig')
  3. from building import *
  4. src = Split('''
  5. jaricom.c
  6. jcomapi.c
  7. jutils.c
  8. jerror.c
  9. jmemmgr.c
  10. jdapimin.c
  11. jdapistd.c
  12. jdarith.c
  13. jdtrans.c
  14. jdatasrc.c
  15. jdmaster.c
  16. jdinput.c
  17. jdmarker.c
  18. jdhuff.c
  19. jdmainct.c
  20. jdcoefct.c
  21. jdpostct.c
  22. jddctmgr.c
  23. jidctfst.c
  24. jidctflt.c
  25. jidctint.c
  26. jdsample.c
  27. jdcolor.c
  28. jquant1.c
  29. jquant2.c
  30. jdmerge.c
  31. jmemnobs.c
  32. ''')
  33. CPPPATH = [RTT_ROOT + '/components/rtgui/common/jpeg']
  34. group = DefineGroup('jpeg', src, depend = ['RTGUI_IMAGE_JPEG'], CPPPATH = CPPPATH)
  35. Return('group')