axmol/1k/manifest.ps1

22 lines
964 B
PowerShell
Raw Normal View History

2024-05-18 23:30:26 +08:00
# Default manifest, refer in 1k/1kiss.ps1
2023-11-29 23:19:04 +08:00
# For maintaining axmol, halx99 contributed some PRs to https://gitlab.kitware.com/cmake
2023-11-18 13:16:40 +08:00
# 3.27.0: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/8319
# 3.28.0: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/8632
2023-11-29 23:19:04 +08:00
# https://gitlab.kitware.com/cmake/cmake/-/merge_requests/9008
# 3.28.0: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/9014
2024-05-18 23:30:26 +08:00
# 3.30.0: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/9478
2023-11-18 13:16:40 +08:00
#
2023-07-08 12:37:02 +08:00
# add or overwrite tool version like follow
2024-03-23 00:51:46 +08:00
if ($Global:is_axmol_app -or $Global:is_axmol_engine) {
$manifest['nuget'] = '5.5.1' # since 5.6.0, require .net 4.0
$manifest['glslcc'] = '1.9.5+'
2024-05-24 01:18:30 +08:00
$manifest['cmake'] = '3.29.3+'
2024-07-15 23:33:36 +08:00
$manifest['emsdk'] = '3.1.63+'
2024-05-24 01:18:30 +08:00
$manifest['jdk'] = '17.0.10+'
2024-03-23 00:51:46 +08:00
}
2024-03-24 05:11:41 +08:00
# android sdk tools
$android_sdk_tools['build-tools'] = '34.0.0' # match with AGP, current 8.2.1 android studio 2023.1.1
$android_sdk_tools['platforms'] = 'android-34'