Skip to content
This repository was archived by the owner on Apr 20, 2022. It is now read-only.

Latest commit

 

History

History
22 lines (14 loc) · 441 Bytes

File metadata and controls

22 lines (14 loc) · 441 Bytes

ECS-Framework

Requires no external libraries

Build

To build, create a build directory

$ mkdir build

Use cmake to configure and make to build

$ cmake ..

$ make

This should result in the libECS.a library being built in the ECS subfolders

Build driver program

If you want to build the driver program to test the framework, build and run with the following commands:

$ cmake -DBUILD=DRIVER=On ..

$ make

$ ./ECSDriver