add icon for notification-win32

This commit is contained in:
Eric Le Lay 2018-07-28 21:19:32 +02:00
parent 403af81e85
commit 0c1a88a441
2 changed files with 4 additions and 0 deletions

View file

@ -166,6 +166,9 @@ function install_gpodder {
cp ${REPO_CLONE}/bin/gpodder "${gpodder_launch_dir}"/gpodder.py
build_compileall -d "" -f -q "$(cygpath -w "${MINGW_ROOT}")"
# copy gpodder.ico for notification-win32
cp ${REPO_CLONE}/tools/win_installer/misc/gpodder.ico "${MINGW_ROOT}"/bin
}
function cleanup_before {

View file

@ -55,6 +55,7 @@ def build_exe(source_path, resource_path, is_gui, out_path):
args.append("-municode")
args.extend(["-o", out_path, source_path, resource_path])
args.extend(get_build_args())
print("Compiling launcher: %r", args)
subprocess.check_call(args)