From 8b03d938fbbab6daa51567b73f5de0a9ada92b4d Mon Sep 17 00:00:00 2001 From: STG996 <72745742+STG996@users.noreply.github.com> Date: Sat, 6 Mar 2021 19:35:52 +0200 Subject: [PATCH] Updated Create Visual Studio 2019 Project (markdown) --- Create-Visual-Studio-2019-Project.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Create-Visual-Studio-2019-Project.md b/Create-Visual-Studio-2019-Project.md index 1915650..7ebc5b2 100644 --- a/Create-Visual-Studio-2019-Project.md +++ b/Create-Visual-Studio-2019-Project.md @@ -22,7 +22,7 @@ https://github.com/raysan5/raylib/wiki/Easy-Raylib-Setup-for-Windows-with-Visual * Go to **C/C++ > Advanced** and set **Compile As** to **Compile as C Code (/TC)** (if you want to use code from examples) * Go to **Linker > General** and add `(your_folder_location)\raylib\projects\VS2019\bin\x64\Release.DLL` folder to **Additional Library Directories** * Go to **Linker > Input** and add `raylib.lib` and `winmm.lib` to **Additional Dependencies** -* Go to _"(your_folder_location)\raylib\projects\VS2019\bin\x64\Release.DLL"_ folder and copy _**raylib.dll**_ to your project folder (main ***.cpp** must be in this folder) +* Go to _"(your_folder_location)\raylib\projects\VS2019\bin\x64\Release.DLL"_ folder and copy _**raylib.dll**_ to your project folder (main ***.exe** must be in this folder) * Set your project's platform to **x64** (if you build your libraries in x64) ## Start coding