forked from loafle/openapi-generator-original
* Add Ada client petstore samples - Add script to generate Ada client support with swagger-codegen - Add files to build the Ada sample - Add main program to use the generated client samples API and connect to the server to perform some operations * Add some description for the samples * Update the documentation to explain how to build, how to use the generated Ada client code
19 lines
440 B
Plaintext
19 lines
440 B
Plaintext
with "config";
|
|
with "util";
|
|
with "util_http";
|
|
with "swagger";
|
|
project Petstore is
|
|
|
|
Mains := ("petstore.adb");
|
|
for Main use Mains;
|
|
for Source_Dirs use ("src", "src/client");
|
|
for Object_Dir use "./obj";
|
|
for Exec_Dir use "./bin";
|
|
|
|
package Binder renames Config.Binder;
|
|
package Builder renames Config.Builder;
|
|
package Compiler renames Config.Compiler;
|
|
package Linker renames Config.Linker;
|
|
|
|
end Petstore;
|