SConscript 320 B

1234567891011121314
  1. import os
  2. from building import *
  3. # get current directory
  4. cwd = GetCurrentDir()
  5. # The set of source files associated with this SConscript file.
  6. src = Glob('RyanJson/*.c')
  7. path = [cwd + '/RyanJson']
  8. group = DefineGroup('RyanJson', src, depend=[
  9. "PKG_USING_RYANJSON"], CPPPATH=path)
  10. Return('group')