-
Notifications
You must be signed in to change notification settings - Fork 366
Building with Visual Studio 2019
JacKc029735 edited this page Aug 23, 2020
·
2 revisions
Pre-Building:
- download and run visual studio 2019 IDE community edition installer from https://visualstudio.microsoft.com/
- select Desktop development with C++
- next you will need a perl interpreter for windows. I recommend ActivePerl (https://www.activestate.com/products/activeperl/downloads/). I usually use the oldest version available. Make sure that you have enabled the checkbox to add perl to the current path.
- Then you need NASM for the assembly files. Go here: https://www.nasm.us/ and download the latest stable version. You need to put nasm.exe somewhere in your path. As I am a savage I have always put it in my windows directory, but I do not recommend this for a number of reasons.
- Currently we require an old directx sdk (this one: https://www.microsoft.com/en-gb/download/details.aspx?id=6812), so install that. Annoyingly it will probably only work if you install it to the default location
Building:
- checkout the code using git (Optionally: fork it first!)
- in the checked out code, open projectfiles then visualstudio-2019, then open fba_vs2019.sln
- select the correctly platform and build type.
- hit build!