SourceToTargetMapping.in 547 B

12345678910111213141516171819202122232425262728
  1. {
  2. "target": {
  3. "name": "${target_name}",
  4. "type": "${target_type}",
  5. "output_name": "${target_output_name}",
  6. "path": "${target_path}",
  7. "dependencies": {
  8. "build": [
  9. ${build_dependencies}
  10. ],
  11. "runtime": [
  12. ${runtime_dependencies}
  13. ]
  14. }
  15. },
  16. "sources": {
  17. "input": [
  18. ${autogen_input_files}
  19. ],
  20. "output": [
  21. ${autogen_output_files}
  22. ],
  23. "static": [
  24. ${static_sources}
  25. ]
  26. }
  27. }