From f97e96c9b9c2700f23d9cc3e225e7b8c6aad44e1 Mon Sep 17 00:00:00 2001 From: Taka Date: Wed, 3 May 2017 10:42:19 +0000 Subject: [PATCH] Set the application icon. --- _freeze.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_freeze.py b/_freeze.py index 93e6c2a..813d253 100644 --- a/_freeze.py +++ b/_freeze.py @@ -42,11 +42,11 @@ build_options = { # freeze the application # NOTE: We can't call the Linux binary "asl_cards", since we need a directory of the same name :-/ -# FIXME! set the app icon target = Executable( "main.py" , base = "Win32GUI" if sys.platform == "win32" else None , targetName = "aslcards.exe" if sys.platform == "win32" else "aslcards" , + icon = os.path.join( base_dir , "resources/app.ico" ) , ) setup( name = APP_NAME ,