最終確認日
SCons
https://scons.org/scons
は Python スクリプトで記述されたビルド自動化ツール。主に C/C++ のプロジェクトで使用され、Make や CMake の代替として利用される。Godot などのオープンソースゲームエンジンでも公式に採用されている。
例
scons platform=ios target=release_debug arch=arm64 plugin=in_app_store version=4.0
オプション | 内容 |
---|---|
platform |
ビルド対象(例: ios, android, windows) |
target |
ビルドタイプ(debug / release / release_debug) |
arch |
アーキテクチャ(arm64 など) |
plugin |
プラグイン名(Godot iOS Plugins 用) |
version |
Godot バージョン(3.x / 4.0) |

公開日
更新日