Updated Compiling (markdown)

CPunch 2022-07-08 00:01:01 -05:00
parent fa3d2d8ebe
commit f0c343a682
1 changed files with 8 additions and 1 deletions

@ -12,6 +12,11 @@ Laika uses CMake as it's build system and provides several definitions for your
### Linux
Make sure you have the following libraries and tools installed:
CMake (>=3.16)
Compiler with C11 support (GCC >= 4.7, Clang >= 3.1, etc.)
Simple run cmake to build the makefiles with your configuration.
```sh
@ -26,7 +31,9 @@ $ cmake --build build
### Windows
Windows also provides a cmake interface to generate .sln files for Visual Studio (if that's your thing). Just generate the .sln with
Make sure you have a recent-ish version of Visual Studio installed (I used 2019).
Windows provides a cmake interface to generate .sln files for Visual Studio (if that's your thing) through the `Developer Command Prompt for VS`. Just generate the .sln with
```batch
> cmake -B winBuild -DLAIKA_PERSISTENCE=On -DLAIKA_OBFUSCATE=On -DCMAKE_BUILD_TYPE=MinSizeRel