init [skip ci]

This commit is contained in:
codecrafters-bot
2025-07-17 06:55:26 +00:00
commit ccd25722f1
11 changed files with 239 additions and 0 deletions

12
.codecrafters/compile.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
#
# This script is used to compile your program on CodeCrafters
#
# This runs before .codecrafters/run.sh
#
# Learn more: https://codecrafters.io/program-interface
set -e # Exit on failure
cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE=${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake
cmake --build ./build