build_config.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "git_url": "https://github.com/ARM-software/astc-encoder.git",
  3. "git_tag": "3.2",
  4. "package_name": "astc-encoder",
  5. "package_version": "3.2-rev2",
  6. "package_url": "https://github.com/ARM-software/astc-encoder",
  7. "package_license": "Apache-2.0",
  8. "package_license_file": "LICENSE.txt",
  9. "cmake_find_template": "Findastc-encoder.cmake.template",
  10. "cmake_find_target": "Findastc-encoder.cmake",
  11. "patch_file": "astc-encoder-3.2-rev1.patch",
  12. "Platforms": {
  13. "Windows": {
  14. "Windows": {
  15. "custom_build_cmd": [
  16. "build_windows.cmd"
  17. ],
  18. "custom_install_cmd": [
  19. "install_windows.cmd"
  20. ]
  21. }
  22. },
  23. "Darwin": {
  24. "Mac": {
  25. "custom_build_cmd": [
  26. "./build_mac.sh"
  27. ],
  28. "custom_install_cmd": [
  29. "./install_mac.sh"
  30. ]
  31. }
  32. },
  33. "Linux": {
  34. "Linux": {
  35. "custom_build_cmd": [
  36. "./build_linux.sh"
  37. ],
  38. "custom_install_cmd": [
  39. "./install_linux.sh"
  40. ]
  41. }
  42. }
  43. }
  44. }