Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#!/bin/sh
export PATH='/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin'
i=0
while [ -f /tmp/.X$i-lock ]; do
i=$(($i + 1))
done
Xvfb :$i &
XVFBPID=$!
env DISPLAY=:$i $@
kill $XVFBPID
exit 0

Binary file not shown.

After

Width:  |  Height:  |  Size: 417 KiB

BIN
Kha/Kinc/Tools/freebsd_x64/kmake Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Kha/Kinc/Tools/freebsd_x64/krafix Executable file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 417 KiB

BIN
Kha/Kinc/Tools/linux_arm/kmake Executable file

Binary file not shown.

Binary file not shown.

BIN
Kha/Kinc/Tools/linux_arm/kraffiti Executable file

Binary file not shown.

BIN
Kha/Kinc/Tools/linux_arm/krafix Executable file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 417 KiB

BIN
Kha/Kinc/Tools/linux_arm64/kmake Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Kha/Kinc/Tools/linux_arm64/krafix Executable file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 417 KiB

BIN
Kha/Kinc/Tools/linux_x64/kmake Executable file

Binary file not shown.

Binary file not shown.

BIN
Kha/Kinc/Tools/linux_x64/kraffiti Executable file

Binary file not shown.

BIN
Kha/Kinc/Tools/linux_x64/krafix Executable file

Binary file not shown.

BIN
Kha/Kinc/Tools/linux_x64/tint Executable file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 417 KiB

BIN
Kha/Kinc/Tools/macos/kmake Executable file

Binary file not shown.

BIN
Kha/Kinc/Tools/macos/kongruent Executable file

Binary file not shown.

BIN
Kha/Kinc/Tools/macos/kraffiti Executable file

Binary file not shown.

BIN
Kha/Kinc/Tools/macos/krafix Executable file

Binary file not shown.

BIN
Kha/Kinc/Tools/macos/tint Executable file

Binary file not shown.

View File

@ -0,0 +1,23 @@
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
MACHINE_TYPE=`uname -m`
if [[ "$MACHINE_TYPE" == "armv"* ]]; then
KINC_PLATFORM=linux_arm
elif [[ "$MACHINE_TYPE" == "aarch64"* ]]; then
KINC_PLATFORM=linux_arm64
elif [[ "$MACHINE_TYPE" == "x86_64"* ]]; then
KINC_PLATFORM=linux_x64
else
echo "Unknown Linux machine '$MACHINE_TYPE', please edit Tools/platform.sh"
exit 1
fi
elif [[ "$OSTYPE" == "darwin"* ]]; then
KINC_PLATFORM=macos
elif [[ "$OSTYPE" == "FreeBSD"* ]]; then
KINC_PLATFORM=freebsd_x64
elif [[ "$OSTYPE" == "msys"* || "$OSTYPE" == "cygwin"* ]]; then
KINC_PLATFORM=windows_x64
KINC_EXE_SUFFIX=.exe
else
echo "Unknown platform '$OSTYPE', please edit Tools/platform.sh"
exit 1
fi

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 417 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.