diff options
author | Louie S <louie@example.com> | 2023-03-04 13:43:45 -0800 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-03-04 13:43:45 -0800 |
commit | 00403d8413157e08eeaba7a1932f17c3c7b0758e (patch) | |
tree | 6f2b20ff98092bd7cbac529d64bbd31b2519b909 /docs | |
parent | 712af9ea3cb3d0de866221ade19341fd114f7000 (diff) |
Configure flag for disabling icon embed for windows executable
Diffstat (limited to 'docs')
-rw-r--r-- | docs/windows_compile_instructions.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/windows_compile_instructions.md b/docs/windows_compile_instructions.md index 8bdb3ef..b24f058 100644 --- a/docs/windows_compile_instructions.md +++ b/docs/windows_compile_instructions.md @@ -14,10 +14,10 @@ Compiling on Windows requires access to the MinGW toolchain. The easiest way to $ pacman -S mingw-w64-x86_64-gcc mingw-w64-x86_64-ncurses make ``` -5. (optional) An icon can be embedded into the executable built at `src/terminal-media-launcher.exe` using the [rcedit](https://github.com/electron/rcedit) tool: +5. (optional) Embedding an icon will require the `windres` tool. This is enabled by default, but can be disabled as part of the configuration: ``` -$ rcedit.exe "src/terminal-media-launcher.exe" --set-icon "data/terminal-media-launcher.ico" +$ ./configure --disable-embed-icon ``` Open File Explorer in the current directory (can be done by running `explorer .` in MSYS2 terminal) and double click the generated executable in `src/` to run the program. If your MSYS2 `/bin` is set in your system PATH (see below), then you can also follow the Unix installation instructions to install `terminal-media-launcher` on your Windows system. |