SConscript 324 B

1234567891011121314151617181920
  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. lib_pthread_wrapper.c
  10. ''')
  11. CPPPATH = [cwd]
  12. group = DefineGroup('iwasm_lib_pthread', src, depend = [''], CPPPATH = CPPPATH)
  13. Return('group')