SConscript 302 B

123456789101112131415161718
  1. import os
  2. from building import *
  3. cwd = GetCurrentDir()
  4. src = Split('''
  5. io_input_filter.c
  6. ''')
  7. if GetDepend(['IIF_EXAMPLE']):
  8. src += ['io_input_filter_example.c']
  9. path = [cwd]
  10. group = DefineGroup('io_input_filter', src, depend = ['PKG_USING_IO_INPUT_FILTER'], CPPPATH = path)
  11. Return('group')