Code Generation for Expression trees

- Ditched Gradle because I couldn't get annotation processing to work,
  switched to maven instead
This commit is contained in:
ctsk
2022-09-06 17:34:55 +02:00
parent 3857580ff0
commit e68f0edc1c
19 changed files with 242 additions and 366 deletions

View File

@@ -14,12 +14,14 @@
gcc = pkgs.gcc;
openjdk = pkgs.openjdk;
maven = pkgs.maven;
in
{
devShell = pkgs.mkShell {
buildInputs = [
gcc
openjdk
maven
];
};
}