update readme for windows

This commit is contained in:
tildearrow 2021-05-28 15:31:35 -05:00
parent 2d3580a05c
commit bae3621874
1 changed files with 18 additions and 1 deletions

View File

@ -14,12 +14,29 @@ this is a work-in-progress chip music player (currently) for the .dmf format.
## dependencies
SDL2. untested on Windows/macOS.
- CMake
- SDL2
- zlib
the latter two are included as submodules for Windows and macOS.
## compilation
your typical CMake project. clone (including submodules) and:
### Windows using MSVC
from the developer tools command prompt:
```
mkdir build
cd build
cmake ..
msbuild ALL_BUILD.vcxproj
```
### macOS and Linux
```
mkdir build
cd build