# -*- mode: python ; coding: utf-8 -*-
import sys
import os
from pathlib import Path

block_cipher = None

# Get the directory containing the spec file
spec_dir = os.path.dirname(os.path.abspath(SPECPATH))
tools_dir = os.path.join(spec_dir, 'valve-tools-wrapper', 'steamvr' ,'tools', 'bin', 'win64')

# Ensure tools directory exists
os.makedirs(tools_dir, exist_ok=True)

a = Analysis(
    ['controller_pairing_gui.py'],
    pathex=[spec_dir],
    binaries=[],
    datas=[
        (os.path.join(tools_dir, 'lighthouse_console.exe'), 'steamvr/tools/bin/win64'),
    ],
    hiddenimports=['steamvr'],
    hookspath=[],
    hooksconfig={},
    runtime_hooks=[],
    excludes=[],
    win_no_prefer_redirects=False,
    win_private_assemblies=False,
    cipher=block_cipher,
    noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)

exe = EXE(
    pyz,
    a.scripts,
    a.binaries,
    a.zipfiles,
    a.datas,
    [],
    name='controller_pairing_gui',
    debug=False,
    bootloader_ignore_signals=False,
    strip=False,
    upx=True,
    upx_exclude=[],
    runtime_tmpdir=None,
    console=False,
    disable_windowed_traceback=False,
    argv_emulation=False,
    target_arch=None,
    codesign_identity=None,
    entitlements_file=None,
    icon='app.ico',
) 