summaryrefslogtreecommitdiffstats
path: root/led/posix_delay_sleep/wscript
blob: 4143dd750b3c9f9cffe31948f29b95b1bff44584 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright 2013 Gedare Bloom (gedare@rtems.org)
#
# This file's license is 2-clause BSD as in this distribution's LICENSE.2 file.
#

# Waf build script for an RTEMS Hello
import rtems_waf.rtems as rtems

def build(bld):
    rtems.build(bld)

    bld(features = 'c cprogram',
        target = 'posix_delay_nanosleep.exe',
        source = ['test.c'])