Extracted annotation processor to own project

This commit is contained in:
Felix Krause 2017-11-30 18:26:22 +01:00
parent 04ee9ba44a
commit 36864089db
16 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,17 @@
with "yaml";
library project Yaml.Annotation_Processor is
for Languages use ("ada");
for Library_Name use "AdaYaml-Annotations";
for Object_Dir use Yaml'Object_Dir;
for Library_Dir use Yaml'Library_Dir;
for Source_Dirs use ("src/annotation_processor/interface",
"src/annotation_processor/implementation");
package Builder renames Yaml.Builder;
package Compiler renames Yaml.Compiler;
package Ide renames Yaml.Ide;
end Yaml.Annotation_Processor;

View File

@ -1,4 +1,5 @@
with "yaml";
with "yaml-annotation_processor";
with "aunit";
project Yaml.Tests is

View File

@ -1,4 +1,5 @@
with "yaml";
with "yaml-annotation_processor";
project Yaml.Utils is
for Languages use ("ada");