1from building import * 2 3src = Split(""" 4tc_comm.c 5thread_static.c 6thread_dynamic.c 7thread_priority.c 8thread_same_priority.c 9thread_static_simple.c 10thread_dynamic_simple.c 11thread_delete.c 12thread_detach.c 13thread_yield.c 14thread_suspend.c 15thread_resume.c 16semaphore_static.c 17semaphore_dynamic.c 18semaphore_priority.c 19semaphore_buffer_worker.c 20semaphore_producer_consumer.c 21mutex_simple.c 22event_simple.c 23mbox_simple.c 24mbox_send_wait.c 25messageq_simple.c 26timer_static.c 27timer_dynamic.c 28timer_stop_self.c 29timer_control.c 30timer_timeout.c 31heap_malloc.c 32heap_realloc.c 33memp_simple.c 34tc_sample.c 35""") 36 37group = DefineGroup('examples', src, 38 depend = ['RT_USING_TC'], 39 CPPPATH=[GetCurrentDir()]) 40 41Return('group') 42