mirror of
https://github.com/Relintai/gdnative_python.git
synced 2024-11-14 10:27:22 +01:00
11 lines
315 B
Python
11 lines
315 B
Python
Import("env")
|
|
|
|
for test in ["pong", "pong_multiplayer"]:
|
|
dist_symlink = env.Symlink(f"{test}/addons", "$DIST_ROOT/addons")
|
|
target = env.Command(
|
|
test, ["$godot_binary", dist_symlink], "${SOURCE.abspath} ${godot_args} --path ${TARGET}"
|
|
)
|
|
env.AlwaysBuild(target)
|
|
|
|
env.Alias("example", "pong")
|