File tree Expand file tree Collapse file tree 5 files changed +11
-6
lines changed
Expand file tree Collapse file tree 5 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
1818
1919### Building Executable
2020- Install PyInstaller: ` uv pip install pyinstaller `
21- - Build using existing spec file: ` pyinstaller glimpse.spec `
22- - Manual build with custom icon : ` pyinstaller --noconfirm --onefile --windowed --icon=app_icon.ico --name=glimpse main.py `
23- - Build without icon (fallback ): ` pyinstaller --noconfirm --onefile --windowed main.py `
21+ - ** Recommended ** : Build using spec file: ` pyinstaller glimpse.spec `
22+ - Manual build (Windows) : ` pyinstaller --noconfirm --onefile --windowed --icon=app_icon.ico --name=glimpse main.py `
23+ - Manual build (Linux/macOS ): ` pyinstaller --noconfirm --onefile --windowed --icon=app_icon.png --name=glimpse main.py `
2424- Output binary will be in the ` dist/ ` folder
25- - ** Note ** : Uses ` app_icon.ico ` for Windows builds, ` app_icon.png ` for other platforms
25+ - ** Cross-platform icons ** : Spec file bundles both PNG and ICO, runtime selects appropriate format
2626
2727## Architecture
2828
You can’t perform that action at this time.
0 commit comments