Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 491 Bytes

File metadata and controls

27 lines (19 loc) · 491 Bytes

clox

To get a development environment set up, use the flake.nix shell provided.

nix develop

The required dependencies are small and can be installed without the nix shell. For this project I only rely on gcc and cmake.

Building

To build the project and get a executable, run the following commands:

mkdir build
cd build
cmake ..
cmake --build .

To build AND run the executable, run the following command:

cmake --build . --target run