Skip to content

Commit

Permalink
removed binary files
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomGamingDev committed Sep 5, 2024
1 parent c7dc7f6 commit 6a73292
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"cmake.sourceDirectory": "/home/randomgamingdev/test/DagorEngine/prog/1stPartyLibs/quirrel/quirrel/sqstdlib"
}
17 changes: 17 additions & 0 deletions build_all.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import os
import sys
import subprocess

if sys.platform.startswith('win'):
script = "cmd build_all.cmd"
elif sys.platform.startswith('darwin'):
script = "bash build_all_macOS.sh"
elif sys.platform.startswith('linux'):
script = "bash build_all_linux.sh"
try:
print(f"Running { script }...")
os.system(script)
except subprocess.CalledProcessError as e:
print("subprocess.run failed with a non-zero exit code. Error: {0}".format(e))
except OSError as e:
print("An OSError occurred, subprocess.run command may have failed. Error: {0}".format(e))
Binary file not shown.
Binary file removed prog/3rdPartyLibs/legacy_parser/whale.exe.debuginfo
Binary file not shown.

0 comments on commit 6a73292

Please sign in to comment.