aboutsummaryrefslogtreecommitdiffstats
path: root/classes/scons.bbclass
blob: 3160eca69a71991da4e71b3be29a16762b7ab104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
DEPENDS += "python-scons-native"

scons_do_compile() {
        ${STAGING_BINDIR}/scons || \
        oefatal "scons build execution failed."
}

scons_do_install() {
        ${STAGING_BINDIR}/scons install || \
        oefatal "scons install execution failed."
}

EXPORT_FUNCTIONS do_compile do_install