Minor correction and clarification of which files to copy and where to copy them to.

zangman
2021-03-09 11:22:12 +08:00
parent 8b03d938fb
commit ac8e733944

@ -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 ***.exe** must be in this folder)
* Go to _"(your_folder_location)\raylib\projects\VS2019\bin\x64\Release.DLL"_ folder and copy _**raylib.dll**_ and _**raylib.lib**_ to your project folder. For example, if your project name is "Demo" then copy these files into the folder `(your_folder_location)\Demo\Demo`.
* Set your project's platform to **x64** (if you build your libraries in x64)
## Start coding