|
||
---|---|---|
liblackjack | ||
raudio | ||
raygui | ||
resources | ||
stb | ||
utilities | ||
.gitignore | ||
.gitlab-ci.yml | ||
CMakeLists.txt | ||
README.md | ||
blackjack.c | ||
windowsCI.ps1 |
README.md
blackjack
just sit back and enjoy a simple game of blackjack.
building
this is a pretty bog-standard building procedure.
mkdir build
cd build
cmake .. -G Ninja
ninja
for the web, just download the emscripten SDK and then run these commands.
cmake -S . -B build-web -G Ninja -DPLATFORM=Web "-DCMAKE_TOOLCHAIN_FILE=<fullpath_to_emsdk>/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake"
cd build-web
ninja
other
for the code, we follow the LLVM
style guide.