SConscript 256 B

12345678910111213
  1. import os
  2. from building import *
  3. objs = []
  4. cwd = GetCurrentDir()
  5. if GetDepend(['SOC_SERIES_N9H30']):
  6. objs = objs + SConscript('N9H30/SConscript')
  7. if GetDepend(['SOC_SERIES_NUC980']):
  8. objs = objs + SConscript('NUC980/SConscript')
  9. Return('objs')