Skip to content

LockednCoded/LoginLanguish

Repository files navigation

LockednCoded

CMake Workflow Status Codacy Badge CodeDocs Badge CodeScene general CodeScene Code Health CodeScene System Mastery codecov

Members:

  • Cameron Bruce 4476706
  • Jack Searle 6178637
  • Finn O'Neill 7143491
  • Jeb Nicholson 4509896

Building from source

Prerequisites:

  • CMake
  • node/npm

1. Clone the repo

git clone https://github.com/LockednCoded/LoginLanguish.git
cd LoginLanguish

2. Build the project

Configuring, building and debugging can be done using VSCode tasks. This is the simplest option.

Configuring: In the cmake configure step, vcpkg will be downloaded and used to install dependencies. This may take a while.

Build for debugging:

cmake -B build -DCMAKE_BUILD_TYPE=Debug

Build for release:

cmake -B build -DCMAKE_BUILD_TYPE=Release

Building:

cmake --build build --clean-first

Running tests:

ctest --test-dir build