Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 1.01 KB

INSTALL.md

File metadata and controls

25 lines (19 loc) · 1.01 KB

Building the vsgExamples

Prerequisites:

The above dependency versions are known to work so they've been set as the current minimum, it may be possible to build against older versions. If you find success with older versions let us know and we can update the version info.

Command line build instructions:

To build in source, with all dependencies installed in standard system directories:

git clone https://github.com/vsg-dev/vsgExamples.git
cd vsgExamples
cmake .
make -j 8

To build out of source, with all dependencies installed in standard system directories:

git clone https://github.com/vsg-dev/vsgExamples.git
mkdir build-vsgExamples
cd build-vsgExamples
cmake .
make -j 8