Files
spacetris/vcpkg.json
Gregor Klevze 45086e58d8 Add pure game model + GTest board tests and scaffolding
Add SDL-free Board model: Board.h, Board.cpp
Add unit tests for Board using Google Test: test_board.cpp
Integrate test_board into CMake and register with CTest: update CMakeLists.txt
Add gtest to vcpkg.json so CMake can find GTest
Add high-level refactor plan: plan-spacetrisRefactor.prompt.md
Update internal TODOs to mark logic extraction complete
This scaffolds deterministic, testable game logic and CI-friendly tests without changing existing runtime behavior.
2025-12-25 10:27:35 +01:00

16 lines
194 B
JSON

{
"dependencies": [
"sdl3",
"sdl3-ttf",
{
"name": "sdl3-image",
"features": ["jpeg", "png", "webp"]
},
"enet",
"catch2",
"gtest",
"cpr",
"nlohmann-json",
"ffmpeg"
]
}