소스 검색

grunt: fix amberc command to compile meta example

Manfred Kroehnert 11 년 전
부모
커밋
3518793d3f
1개의 변경된 파일6개의 추가작업 그리고 4개의 파일을 삭제
  1. 6 4
      nodejs/Gruntfile.js

+ 6 - 4
nodejs/Gruntfile.js

@@ -22,11 +22,13 @@ module.exports = function(grunt) {
         output_name: 'benchfib/Program'
       },
       meta: {
-        working_dir: 'meta',
-        src: ['MyScript.st'],
+        src: ['meta/MyScript.st'],
         main_class: 'MyScript',
-        libraries: ['parser','Compiler'],
-        output_name: 'Program'
+        libraries: [
+            'Importer-Exporter', 'Compiler-Exceptions', 'Compiler-Core', 'Compiler-AST',
+            'Compiler-IR', 'Compiler-Inlining', 'Compiler-Semantic', 'Compiler-Interpreter', 'parser'
+        ],
+        output_name: 'meta/Program'
       },
       pystone: {
         src: ['pystone/Pystone.st'],