Skip to content

Latest commit

 

History

History
50 lines (29 loc) · 746 Bytes

README.md

File metadata and controls

50 lines (29 loc) · 746 Bytes

object-factory

Description

C++17 implementation of an object factory

Requirements

cmake is used to compile the sources.

The default compiler used is clang++-5.0.

The cmake files compile with -std=c++17.

The unit tests are implemented in googletest: be sure you have installed googletest to compile.

Install

$ git clone https://github.com/massimo-marino/object-factory.git
$ cd object-factory
$ mkdir build
$ cd build
$ cmake ..
$ make

Run Unit Tests

Unit tests are implemented with googletest.

Install googletest to compile and run them.

$ cd src/unitTests
$ ./unitTests

Run Example [==Not Implemented==]

$ cd ../example
$ ./object-factory-example