Browse Source

Add (currently unused) plugin-ui.py for cxfreeze on windows

tags/1.9.8
falkTX 8 years ago
parent
commit
9e6956cd31
1 changed files with 35 additions and 0 deletions
  1. +35
    -0
      data/windows/plugin-ui.py

+ 35
- 0
data/windows/plugin-ui.py View File

@@ -0,0 +1,35 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# ------------------------------------------------------------------------------------------------------------
# Imports (cx_Freeze)

from cx_Freeze import setup, Executable

# ------------------------------------------------------------------------------------------------------------
# Imports (Custom Stuff)

from carla_host import VERSION

# ------------------------------------------------------------------------------------------------------------

name = "bigmeter-ui"

# ------------------------------------------------------------------------------------------------------------

options = {
"icon": ".\\resources\\ico\\carla.ico",
"packages": [],
"includes": ["re", "sip", "subprocess", "inspect"],
"build_exe": ".\\data\\windows\\%s\\" % name,
"optimize": False,
"compressed": False
}

setup(name = name,
version = VERSION,
description = name,
options = {"build_exe": options},
executables = [Executable(".\\bin\\resources\\%s.pyw" % name, base="Win32GUI")])

# ------------------------------------------------------------------------------------------------------------

Loading…
Cancel
Save