diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-05-03 09:44:57 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-05-07 15:30:45 -0500 |
commit | 34fb3f7730e93120c0f52cc86f314d50fa9d34ed (patch) | |
tree | fb86487c89433bc1b80298937efb6485649a1d3b /platform_methods.py | |
parent | 55b8724bd5188932b69a6ee484ab092cd95d4498 (diff) | |
download | redot-engine-34fb3f7730e93120c0f52cc86f314d50fa9d34ed.tar.gz |
SCons: Generate all scripts natively
Diffstat (limited to 'platform_methods.py')
-rw-r--r-- | platform_methods.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/platform_methods.py b/platform_methods.py index 57b11d1a47..5326e36077 100644 --- a/platform_methods.py +++ b/platform_methods.py @@ -43,33 +43,6 @@ def detect_arch(): return "x86_64" -def generate_export_icons(platform_path, platform_name): - """ - Generate headers for logo and run icon for the export plugin. - """ - export_path = platform_path + "/export" - svg_names = [] - if os.path.isfile(export_path + "/logo.svg"): - svg_names.append("logo") - if os.path.isfile(export_path + "/run_icon.svg"): - svg_names.append("run_icon") - - for name in svg_names: - with open(export_path + "/" + name + ".svg", "rb") as svgf: - b = svgf.read(1) - svg_str = " /* AUTOGENERATED FILE, DO NOT EDIT */ \n" - svg_str += " static const char *_" + platform_name + "_" + name + '_svg = "' - while len(b) == 1: - svg_str += "\\" + hex(ord(b))[1:] - b = svgf.read(1) - - svg_str += '";\n' - - wf = export_path + "/" + name + "_svg.gen.h" - - methods.write_file_if_needed(wf, svg_str) - - def get_build_version(short): import version |