You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 months ago | |
---|---|---|
liblackjack | 2 months ago | |
raudio | 3 months ago | |
raygui | 3 months ago | |
resources | 3 months ago | |
stb | 3 months ago | |
utilities | 2 months ago | |
.gitignore | 2 months ago | |
.gitlab-ci.yml | 3 months ago | |
CMakeLists.txt | 3 months ago | |
README.md | 3 months ago | |
blackjack.c | 2 months ago | |
windowsCI.ps1 | 3 months ago |
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.