-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathopenapi_server.gpr.in
28 lines (22 loc) · 957 Bytes
/
openapi_server.gpr.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
with "@UTIL_DIR@config";
with "@UTIL_DIR@utilada_sys";
with "@SERVLET_DIR@servletada";
with "@SERVLET_DIR@servletada_aws";
with "@SECURITY_DIR@security";
with "openapi";
library project openapi_server is
Version := "@OPENAPI_VERSION@";
Library_Type : Config.Library_Type_Type := external ("OPENAPI_LIBRARY_TYPE", "@DEFAULT_LIBRARY_TYPE@");
for Library_Name use "openapi_server";
for Library_Kind use Library_Type;
for Library_Version use "lib" & Project'Library_Name & ".so." & Version;
for Source_Dirs use ("src/server");
for Library_Dir use "lib/openapi_server/" & Project'Library_Kind;
for Object_Dir use "obj/openapi_server/" & Project'Library_Kind;
package Builder renames Config.Builder;
package Compiler renames Config.Compiler;
package Ide renames Config.Ide;
package Binder is
for Default_Switches ("Ada") use Config.Binder'Default_Switches ("Ada") & ("-a");
end Binder;
end openapi_server;