NikkyArmstrong / parser

Parser for a text adventure written using TDD in catch2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parser

Text parser for a text adventure. This repo just holds the C++ code for the parser, writing using a test-first approach with Catch 2.

(devblog)[devblog.md] follows the steps I've taken.

Compile

mkdir build //if it doesn't exist
cd build
cmake .. -G "MinGW Makefiles"
cmake --build .

Run

Tests: ./build/test/Debug/test.exe

Main: ./build/Debug/Parser.exe

About

Parser for a text adventure written using TDD in catch2

License:MIT License


Languages

Language:C++ 95.6%Language:CMake 3.7%Language:C 0.6%