Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added easily expandable macro for reducing repetition and better debugging for ConsoleMouseKbdHandler controls #79

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
removed binary files
RandomGamingDev committed Sep 5, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 6a73292bb221975137141c8595f4d6d1fc7ef046
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))
RandomGamingDev marked this conversation as resolved.
Outdated
Show resolved Hide resolved
Binary file not shown.
Binary file removed prog/3rdPartyLibs/legacy_parser/whale.exe.debuginfo
RandomGamingDev marked this conversation as resolved.
Outdated
Show resolved Hide resolved
Binary file not shown.