SConscript 359 B

12345678910111213141516171819
  1. from building import *
  2. group = []
  3. if not GetDepend(['RT_GRAPHIC_FB']):
  4. Return('group')
  5. cwd = GetCurrentDir()
  6. list = os.listdir(cwd)
  7. CPPPATH = [cwd + '/../../include']
  8. src = []
  9. if GetDepend(['RT_GRAPHIC_FB_SIMPLE']):
  10. src += ['fb-simple.c']
  11. group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
  12. Return('group')