parent
65377ff16a
commit
9929e0efac
6 changed files with 13 additions and 13 deletions
@ -1 +1,2 @@ |
||||
usr/bin/prog?exe |
||||
usr/bin/program?exe |
||||
usr/bin/program2?exe |
||||
|
@ -1,4 +1,6 @@ |
||||
project('rustprog', 'rust') |
||||
|
||||
e = executable('prog', 'prog.rs', install : true) |
||||
e = executable('program', 'prog.rs', install : true) |
||||
test('rusttest', e) |
||||
|
||||
subdir('subdir') |
||||
|
@ -0,0 +1,2 @@ |
||||
e = executable('program2', 'prog.rs', install : true) |
||||
test('rusttest2', e) |
@ -0,0 +1,3 @@ |
||||
fn main() { |
||||
println!("rust compiler is working"); |
||||
} |
Loading…
Reference in new issue