Moved stuff

This commit is contained in:
Synthasmagoria 2026-08-28 12:08:55 +02:00
commit 5377458895
234 changed files with 12 additions and 1 deletions

BIN
default

Binary file not shown.

View file

@ -1,4 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Currently not cross compiling for windows and darwin
# Usage: <script> <DEBUG/RELEASE>
set -euo pipefail set -euo pipefail
emsdk_env="$HOME/programs/emsdk/emsdk_env.sh" emsdk_env="$HOME/programs/emsdk/emsdk_env.sh"
@ -7,6 +9,15 @@ linux_library_dest="../../linux"
windows_library_dest="../../windows" windows_library_dest="../../windows"
darwin_library_dest="../../darwin" darwin_library_dest="../../darwin"
wasm_library_dest="../../wasm" wasm_library_dest="../../wasm"
linux_library_dest_here="linux/"
windows_library_dest_here="windows/"
darwin_library_dest_here="darwin/"
wasm_library_dest_here="wasm/"
mkdir -p $linux_library_dest_here
mkdir -p $windows_library_dest_here
mkdir -p $darwin_library_dest_here
mkdir -p $wasm_library_dest_here
if [ "$1" = "DEBUG" ]; then if [ "$1" = "DEBUG" ]; then
MFLAGS="RAYLIB_BUILD_MODE=DEBUG" MFLAGS="RAYLIB_BUILD_MODE=DEBUG"

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show more