Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 677 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 677 Bytes

flash-cardc

Terminal-based graphical flash card app

Build

Uses CMake, which will fetch the main dependency ftxui itself when you start building.

From root directory:

mkdir build
cd build
cmake ../        # generate build files
cmake --build    # compile/link
./flash-cardc    # run program

Note

If you want to build from vscode like I like to, it works best if your build/ folder is empty. If you've already built the project from the command line, delete everything from build/ and then build it all from vscode and it will work from then on. Also I use g++ on linux, in case it asks and affects you.