Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add to the README more required dependencies #69

Merged
merged 2 commits into from
Aug 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,12 @@ dll because it will be loaded into each process address space.
COMPILING
=========

dwm-win32 requires [zig](https://ziglang.org/) to compile. Source code for dwm-win32 is written in C and uses `zig cc` to compile C to native code.
You can install the compiler by using [scoop](https://scoop.sh) as `scoop install zig`.
To compile, dwm-win32 requires:
- [Visual Studio C/C++ Build Tools and Windows SDK](https://visualstudio.microsoft.com/downloads/) (You can use the Visual Studio Installer to download only headless c/c++ build tools and windows sdk without the full IDE)
- [zig](https://ziglang.org/)

Source code for dwm-win32 is written in C and uses `zig cc` to compile C to native code.
You can install the Zig compiler by using [scoop](https://scoop.sh) as `scoop install zig`.

```cmd
build.cmd
Expand Down