axmol/1k/manifest.ps1

23 lines
1011 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) {
2024-07-20 02:52:07 +08:00
$manifest['nuget'] = '5.5.1' # since 5.6.0, requires .net 4.0
$manifest['glslcc'] = '1.9.5+'
2024-10-20 09:42:12 +08:00
$manifest['cmake'] = '3.29.3~3.30.5+'
$manifest['emsdk'] = '3.1.66~3.1.69+'
Release 2.1.5 (#2076) * Fix unexpected libpng used * Fix string format incorrect for tests * Fix #1751, use coroutine control AutoTest flow * Update CHANGELOG.md * Added OpenType font (.otf) to the noCompress list. (#2077) * Update 1k & copyright notice in some sources * Move doctest to axmol 3rdparty * Fix ci * Update 1kdist to v90 * Update 1kiss.ps1 * DrawNodeV2 0.95.1 (#2079) * Rename remaining legacy engine related spells and improve code style * Update 3rdparty README.md * Fix checkReallySupportsASTC does not work on ios device reported by @BIGCATDOG in https://github.com/axmolengine/axmol/issues/2078 * Fix ci * FastRNG: add missing include for AXASSERT (#2081) * Delete unused files * Improve FileUtils - Rename FileUtils::createDirectory to FileUtils::createDirectories - Use splitpath_cb to optimize FileUtils::createDirectories - Rename FileUtils::getFileShortName to FileUtils::getPathBaseName - Rename FileUtils::getFileExtension to FileUtils::getPathExtension - Add FileUtils::getPathDirName - Add FileUtils::getPathBaseNameNoExtension - Mark all renamed FileUtils stubs old name deprecated - Mark all FileUtils offthread APIs deprecated * Update box2d to v2.4.2 * Disable /sdl checks explicitly for winuwp For axmol deprecated policy, we need disable /sdl checks explicitly to avoid compiler traits invoking deprecated functions as error * Update cppwinrt to 2.0.240405.15 * Update simdjson to 3.10.0 * Fix box2d testbed compile error * Improve file path to url * Fix FileUtils::createDirectories unix logic * axmol-cmdline: remove arch suffix for host build output directory * Update CHANGELOG.md * Update lua bindings --------- Co-authored-by: Dani Alias <danielgutierrezalias@gmail.com> Co-authored-by: aismann <icesoft@freenet.de> Co-authored-by: smilediver <smilediver@outlook.com>
2024-08-11 21:11:35 +08:00
$manifest['jdk'] = '17.0.10~17.0.12+'
2024-09-23 23:59:11 +08:00
$manifest['vs'] = '16.0+'
2024-03-23 00:51:46 +08:00
}
2024-03-24 05:11:41 +08:00
# android sdk tools
2024-07-20 02:52:07 +08:00
$android_sdk_tools['build-tools'] = '34.0.0' # match with AGP-8.2.1+, android studio 2023.1.1+
2024-03-24 05:11:41 +08:00
$android_sdk_tools['platforms'] = 'android-34'