summaryrefslogtreecommitdiffstats
path: root/cxx/cxx_throw/wscript
blob: 05f418b50dff7a1c9257aea694f9629b27ede460 (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 C++ Throw example
import rtems_waf.rtems as rtems

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

    bld(features = 'cxx cxxprogram',
        target = 'cxx_throw.exe',
        source = ['init.cc'])