X-Git-Url: http://git.code-monkey.de/?p=gps-watch.git;a=blobdiff_plain;f=SConscript.target;h=2da14a42ff3dc1a9005f901816b4bb0cde728252;hp=fa4ca1775d42e3ea4d47efce8000a67bdb06e62a;hb=853beae392e40ee2843e7187500285da666f11e9;hpb=b891a2ff44e99392e258c2f39ec0852c4b5dbfab diff --git a/SConscript.target b/SConscript.target index fa4ca17..2da14a4 100644 --- a/SConscript.target +++ b/SConscript.target @@ -36,7 +36,7 @@ env.Append(LINKFLAGS = [ libgcc_path = \ subprocess.check_output('{} -print-libgcc-file-name'.format(env['CC']), - shell=True).strip() + shell=True).strip().decode('utf-8') env.Append(RUSTCFLAGS = [ '-C', 'opt-level=s', @@ -84,6 +84,9 @@ for s in ['intermediate', 'final']: application_source_files = [ 'src/application/main.rs', # Must be listed first (see below). + 'src/application/button.rs', + 'src/application/model.rs', + 'src/application/views.rs', 'src/application/uart0.rs', ]