-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.sh
More file actions
18 lines (13 loc) · 694 Bytes
/
env.sh
File metadata and controls
18 lines (13 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
PKG=$(basename "$PWD"); export PKG # Package name, must contain a Classes subdirectory
export UT_PATH="UnrealTournament" # Must be a legitimate UT installation
export SYS="$UT_PATH/System" # UT's System directory
export SYS64="$UT_PATH/System64" # UT's System64 directory
export UT_LOG="$SYS64/UnrealTournament.log" # UT's log file
export BUILD_DIR="./Build"
export CONFIG="Make.ini" # Build configuration
export TERMINAL="$TERM" # Your default terminal emulator
# Input files
INS+=$(find "$(realpath ./Classes)" -name '*.uc'); export INS
# Output files
export OUTS=("$HOME/.utpg/System/$PKG.u" "$HOME/.utpg/System/$PKG.ucl")