SConscript 319 B

12345678910111213141516171819
  1. #
  2. # Copyright (c) 2021, RT-Thread Development Team
  3. #
  4. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  5. #
  6. from building import *
  7. cwd = GetCurrentDir()
  8. src = Split('''
  9. libc_emcc_wrapper.c
  10. ''')
  11. CPPPATH = [cwd]
  12. group = DefineGroup('iwasm_libc_emcc', src, depend = [''], CPPPATH = CPPPATH)
  13. Return('group')