From e1db9f4c9976a1f6a245770b3495e7117457500a Mon Sep 17 00:00:00 2001 From: Peter0x44 Date: Thu, 18 Jul 2024 00:48:17 +0100 Subject: [PATCH] Remove --target from windres example command --- Frequently-Asked-Questions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frequently-Asked-Questions.md b/Frequently-Asked-Questions.md index 85ad9fc..5de7b40 100644 --- a/Frequently-Asked-Questions.md +++ b/Frequently-Asked-Questions.md @@ -288,7 +288,7 @@ Icon support on executables is only supported in [PE executables](https://en.wik To embed the icon as a resource on code compilation, a [`resource.rc` file](https://github.com/raysan5/raylib/blob/master/src/raylib.rc) should be created and compiled into an object file to be embedded as a regular code file. To compile that resource file, MinGW provides a tool called `windres.exe`: ``` -windres resource.rc -o resource.rc.data --target=pe-x86-64 +windres resource.rc -o resource.rc.data ``` With Visual Studio, adding the `resource.rc` file to the project should be enough.