2024-02-06 11:24:48 +01:00
|
|
|
# SPDX-FileCopyrightText: 2024 Leroy Hopson <code@leroy.nix.nz>
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
set dotenv-load
|
|
|
|
|
2024-02-24 04:17:31 +01:00
|
|
|
godot := `echo "${GODOT:-godot} --rendering-driver ${RENDERING_DRIVER:-vulkan}"`
|
2024-02-06 11:24:48 +01:00
|
|
|
|
|
|
|
build:
|
2024-03-01 07:11:40 +01:00
|
|
|
cd addons/godot_xterm/native && scons debug_symbols=yes
|
2024-02-17 23:50:38 +01:00
|
|
|
|
|
|
|
install:
|
|
|
|
{{godot}} --headless -s plug.gd install
|
|
|
|
|
2024-02-25 08:35:50 +01:00
|
|
|
test_files := if os_family() == "unix" { "test/test_terminal.gd,test/test_pty.gd,test/test_nix.gd" } else { "test/test_terminal.gd,test/test_pty.gd" }
|
|
|
|
|
2024-02-17 23:50:38 +01:00
|
|
|
test:
|
2024-02-25 08:35:50 +01:00
|
|
|
{{godot}} --headless -s addons/gut/gut_cmdln.gd -gtest={{test_files}} -gexit
|
2024-02-18 08:26:32 +01:00
|
|
|
|
2024-02-25 01:13:13 +01:00
|
|
|
test-all:
|
|
|
|
{{godot}} --windowed --resolution 400x200 --position 0,0 -s addons/gut/gut_cmdln.gd -gdir=res://test -gopacity=0 -gexit
|
|
|
|
|
2024-02-18 08:26:32 +01:00
|
|
|
test-rendering:
|
|
|
|
{{godot}} --windowed --resolution 400x200 --position 0,0 -s addons/gut/gut_cmdln.gd -gtest=res://test/test_rendering.gd -gopacity=0 -gexit
|
2024-02-17 23:50:38 +01:00
|
|
|
|
|
|
|
uninstall:
|
|
|
|
{{godot}} --headless -s plug.gd uninstall
|