build_config.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "git_url":"https://github.com/o3de/o3de-azslc.git",
  3. "git_tag":"1.8.22",
  4. "package_name":"azslc",
  5. "package_version":"1.8.22-rev1",
  6. "package_url":"https://github.com/o3de/o3de-azslc",
  7. "package_license":"CUSTOM",
  8. "package_license_file":"LICENSE.txt",
  9. "cmake_find_target":"Findazslc.cmake",
  10. "Platforms":{
  11. "Windows":{
  12. "Windows":{
  13. "cmake_find_template":"Findazslc.cmake.Windows",
  14. "custom_build_cmd": [
  15. "build_azslc_windows.cmd"
  16. ],
  17. "custom_install_cmd": [
  18. "install_azslc_windows.cmd"
  19. ]
  20. }
  21. },
  22. "Darwin":{
  23. "Mac":{
  24. "cmake_find_template":"Findazslc.cmake.Mac",
  25. "custom_build_cmd": [
  26. "./build_azslc_mac.sh"
  27. ],
  28. "custom_install_cmd": [
  29. "./install_azslc_mac.sh"
  30. ]
  31. }
  32. },
  33. "Linux":{
  34. "Linux":{
  35. "cmake_find_template":"Findazslc.cmake.Linux",
  36. "custom_build_cmd": [
  37. "./build_azslc_linux.sh"
  38. ],
  39. "custom_install_cmd": [
  40. "./install_azslc_linux.sh"
  41. ]
  42. },
  43. "Linux-aarch64": "@Linux"
  44. }
  45. }
  46. }