prabirshrestha / dwm-win32

dwm port of tiling manager to Window
MIT License
489 stars 38 forks source link

Add to the README more required dependencies #69

Closed nir9 closed 1 year ago

nir9 commented 1 year ago

To compile C in this project, zig uses files from Visual Studio Build Tools and Windows SDK

Reason it requires these is because the compile target is msvc and also the project uses the Windows API calls so the Windows SDK is needed anyway.

Zig does come with built in targets for Windows as well, but the MSVC target depends on Visual Studio.

prabirshrestha commented 1 year ago

Merged. Thanks!