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.
16 lines
194 B
JSON
16 lines
194 B
JSON
{
|
|
"dependencies": [
|
|
"sdl3",
|
|
"sdl3-ttf",
|
|
{
|
|
"name": "sdl3-image",
|
|
"features": ["jpeg", "png", "webp"]
|
|
},
|
|
"enet",
|
|
"catch2",
|
|
"gtest",
|
|
"cpr",
|
|
"nlohmann-json",
|
|
"ffmpeg"
|
|
]
|
|
} |