Go to file
seafork 7e2b1c1167 format, for the last time. I promise! 2022-11-19 00:25:07 -05:00
liblackjack reformatted the code. 2022-11-17 00:43:07 -05:00
raudio Initial Commit 2022-11-13 05:36:30 -05:00
raygui Initial Commit 2022-11-13 05:36:30 -05:00
resources Initial Commit 2022-11-13 05:36:30 -05:00
stb Initial Commit 2022-11-13 05:36:30 -05:00
utilities format, for the last time. I promise! 2022-11-19 00:25:07 -05:00
.gitignore added new .gitignores and axed some files. 2022-11-17 00:47:38 -05:00
.gitlab-ci.yml copy the needed DLLs 2022-11-13 13:07:50 -05:00
CMakeLists.txt copy the needed DLLs 2022-11-13 13:07:50 -05:00
README.md now this is just sad 2022-11-13 06:17:51 -05:00
blackjack.c format, for the last time. I promise! 2022-11-19 00:25:07 -05:00
windowsCI.ps1 added the dll 2022-11-13 19:35:38 +00:00

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.