mirror of https://github.com/axmolengine/axmol.git
20 lines
775 B
PowerShell
20 lines
775 B
PowerShell
# Default manifest, refer in build1k.ps1
|
|
# For maintaining axmol, halx99 contributed some PRs to https://gitlab.kitware.com/cmake
|
|
# 3.27.0: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/8319
|
|
# 3.28.0: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/8632
|
|
# https://gitlab.kitware.com/cmake/cmake/-/merge_requests/9008
|
|
# 3.28.0: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/9014
|
|
#
|
|
|
|
# add or overwrite tool version like follow
|
|
$manifest['nuget'] = '5.5.1' # since 5.6.0, require .net 4.0
|
|
$manifest['glslcc'] = '1.9.3+'
|
|
|
|
if ($IsMacOS) {
|
|
# refer to: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/8632
|
|
# once cmake-3.28.0 released, can simply specify cmake to '3.28.0+'
|
|
$manifest['cmake'] = '3.28.0+'
|
|
}
|
|
|
|
# [void]$manifest
|