First sample dependent libraries

This commit is contained in:
Alejandro R. Mosteo
2018-01-29 00:38:32 +01:00
parent bcb199257a
commit 8d30da8959
13 changed files with 128 additions and 71 deletions
+7 -6
View File
@@ -1,11 +1,12 @@
package Alire.Index.Libhello is
Libhello : constant Project := Git_Project ("libhello",
"git@bitbucket.org:aleteolabs/libhello.git");
Name : constant Project_Name := "libhello";
Repo : constant URL := "git@bitbucket.org:aleteolabs/libhello.git";
V_1_0_0 : constant Milestone := Register (Git_Release (
Libhello,
V ("1.0.0"),
"ce78e7706c9d3f97605df48d8befca5407f8d328"));
V_1_0_0 : constant Release :=
Register_Git (Name,
V ("1.0.0"),
Repo,
"ce78e7706c9d3f97605df48d8befca5407f8d328");
end Alire.Index.Libhello;