Advertisement
Burnsycle

DXVK Windows project guide

Nov 20th, 2022 (edited)
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. If you want to build your own version of Fallout 4 Vulkan from github and aren't familiar with what you need. Here are the free tools you need. Its not super easy but not super hard to figure out. Just time.
  2.  
  3.  
  4.  
  5.  
  6.  
  7. What you need
  8.  
  9.  
  10.  
  11. 1.Visual Studio 2022 Community Edition (Link is at bottom of page)
  12.  
  13. https://visualstudio.microsoft.com/vs/community/
  14.  
  15.  
  16.  
  17.  
  18. (I would download as many packages as possible within Visual Studio 2022. C/C+ compiler etc.
  19.  
  20. Just paste in the github link https://github.com/doitsujin/dxvk and it will download the files needed to start compiling 
  21.  
  22.  
  23.  
  24. 2. Python 3.7 or newer for the Meson build system dxvk project likes to use
  25.  
  26. https://www.python.org/downloads/
  27.  
  28. 3. Cmake(just for extra compiling tools to avoid any errors)
  29.  
  30. https://cmake.org/download/
  31.  
  32. 4. Vulkan SDK(This has to be on the system or it will throw errors)
  33.  
  34. https://vulkan.lunarg.com/sdk/home
  35.  
  36.  
  37.  
  38. Basically in Visual Studio 2022 you want to use Visual Studio 2019 backend as it plays nicer with DXVK's project code.
  39.  
  40. Look at this picture for reference to make sure you are in the right spot
  41. https://imgur.com/BIEpo5q
  42.  
  43. search bar within Windows 10 find x64 Native Tools for VS 2022 ( Run as Administrator) ALWAYS. Click on that
  44.  
  45. CHANGE DIRECTORY TO cd C:\Users\admin\source\repos\dxvk or where you prefer DXVK to compile to
  46.  
  47. then type in
  48.  
  49. meson --backend vs2019 --buildtype release build
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement