Skip to content

Commit

Permalink
barebones version and aggregate proc experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
Alejandro R. Mosteo committed Sep 18, 2017
1 parent af5303b commit 47ba144
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
6 changes: 6 additions & 0 deletions alire.gpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
aggregate project Alire is

for Project_Path use ("../libhello");
for Project_Files use ("hello.gpr");

end Alire;
10 changes: 10 additions & 0 deletions hello.gpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
with "libhello.gpr";

project Hello is

for Source_Dirs use ("src");
for Object_Dir use "obj";
for Main use ("hello.adb");

end Hello;

7 changes: 7 additions & 0 deletions src/hello.adb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
with Libhello;

procedure Hello is

begin
Libhello.Hello_World;
end Hello;

0 comments on commit 47ba144

Please sign in to comment.