mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-17 18:15:11 +00:00
update readme for windows
This commit is contained in:
parent
2d3580a05c
commit
bae3621874
1 changed files with 18 additions and 1 deletions
19
README.md
19
README.md
|
@ -14,12 +14,29 @@ this is a work-in-progress chip music player (currently) for the .dmf format.
|
||||||
|
|
||||||
## dependencies
|
## dependencies
|
||||||
|
|
||||||
SDL2. untested on Windows/macOS.
|
- CMake
|
||||||
|
- SDL2
|
||||||
|
- zlib
|
||||||
|
|
||||||
|
the latter two are included as submodules for Windows and macOS.
|
||||||
|
|
||||||
## compilation
|
## compilation
|
||||||
|
|
||||||
your typical CMake project. clone (including submodules) and:
|
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
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
|
|
Loading…
Reference in a new issue