SConscript 264 B

1234567891011121314
  1. import os
  2. from building import *
  3. objs = []
  4. cwd = GetCurrentDir()
  5. if GetDepend(['SOC_MCIMX6X4']):
  6. objs = objs + SConscript('imx6ul-standard/SConscript')
  7. if GetDepend(['SOC_IMX6ULL']):
  8. objs = objs + SConscript('imx6ul-smart/SConscript')
  9. Return('objs')