mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
Add a Justfile
Can now easily run the build command with `just build` from anywhere in the repo.
This commit is contained in:
parent
14db14679f
commit
f98921dc7e
3 changed files with 17 additions and 0 deletions
5
.env.example
Normal file
5
.env.example
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# SPDX-FileCopyrightText: none
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
|
# Name or path to your Godot executable
|
||||||
|
GODOT=godot
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -43,3 +43,6 @@ docs/logs
|
||||||
.directory
|
.directory
|
||||||
.DS_Store
|
.DS_Store
|
||||||
*~
|
*~
|
||||||
|
|
||||||
|
# Other ignores
|
||||||
|
.env
|
||||||
|
|
9
Justfile
Normal file
9
Justfile
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# SPDX-FileCopyrightText: 2024 Leroy Hopson <code@leroy.nix.nz>
|
||||||
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
set dotenv-load
|
||||||
|
|
||||||
|
godot := `echo "${GODOT:-godot}"`
|
||||||
|
|
||||||
|
build:
|
||||||
|
cd addons/godot_xterm/native && scons
|
Loading…
Reference in a new issue