ZenCode compiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

project.zcp 481B

1234567891011121314151617181920212223
  1. {
  2. "targets": [
  3. { "module": "shared", "type": "javaSource", "output": "shared/outputJava/src/main/java", "name": "SharedJavaSource" },
  4. { "module": "shared", "type": "javaBytecodeJar", "output": "shared/output/Shared.jar", "name": "SharedJavaBytecode" }
  5. ],
  6. "modules": [
  7. "shared",
  8. "codemodel",
  9. "parser"
  10. ],
  11. "libraries": {
  12. "StdLib": {
  13. "directory": "../StdLibs",
  14. "modules": [
  15. "collections",
  16. "io",
  17. "live",
  18. "listeners",
  19. "compactio"
  20. ]
  21. }
  22. }
  23. }