Files
alire-index-community/index/alire-index-apq.ads
T
2018-04-30 10:52:43 +02:00

26 lines
844 B
Ada

package Alire.Index.APQ is
function Project is
new Catalogued_Project ("APQ Ada95 Database Library (core)");
Repo : constant URL := "https://github.com/alire-project/apq.git";
V_3_2_0 : constant Release :=
Project.Register
(V ("3.2.0"),
Git (Repo, "3b5b4b99f528f853e02abf239da7db3d8c9962b4"),
Properties =>
Project_File ("apq.gpr") and
GPR_Scenario ("OS", "Windows_NT" or "GNU/Linux" or "Darwin") and
GPR_Scenario ("DEBUG", "true" or "false") and
License (GMGPL_2_0) and
License (GMGPL_3_0),
Private_Properties =>
Project_File ("samples/apq-samples.gpr")
);
end Alire.Index.APQ;