From fbf33992e32a04c8d26176b12e20e7e734dcf013 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 11 Apr 2025 21:37:22 -0500 Subject: [PATCH] [studio,turbine] Add support for window icons --- scripts/file-to-cpp.py | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100755 scripts/file-to-cpp.py diff --git a/scripts/file-to-cpp.py b/scripts/file-to-cpp.py deleted file mode 100755 index 057976a..0000000 --- a/scripts/file-to-cpp.py +++ /dev/null @@ -1,30 +0,0 @@ -#! /usr/bin/env python3 - -# -# Copyright 2016 - 2025 gary@drinkingtea.net -# -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. -# - -import argparse -import sys - - -def main() -> int: - parser = argparse.ArgumentParser() - parser.add_argument('--file', help='path to file') - parser.add_argument('--out-cpp', help='path to output cpp file') - parser.add_argument('--out-hpp', help='path to output hpp file') - parser.add_argument('--namespace', help='path to output hpp file') - args = parser.parse_args() - return 0 - - -if __name__ == '__main__': - try: - err = main() - sys.exit(err) - except KeyboardInterrupt: - sys.exit(1)