Running UFO‐Cells from pre‐built library files - UbuntuJackson/UFO-Cells GitHub Wiki

UFOCells' GitHub repository offers engine artifacts accessible under the "Action" tab. Follow these steps to integrate them into your Visual Studio project:

  1. Clone UFOCells: git clone https://github.com/UbuntuJackson/UFO-Cells.git

  2. Create a Visual Studio project.

  3. Enter solution properties.

  4. Set C++ standards to C++17.

  5. In the C/C++ tab, under General, provide paths to the src and external directories of UFOCells and the external directory as additional header file paths.

  6. In the Linker tab, under General, set the additional library directories to the path of the artifact's root (where you find the .lib and .pdb files). In the Input section, add the artifact's root\UFOCells.lib as an additional dependency.

Ensure that you apply the correct build architecture, and you are ready to proceed!

(Instructions written by Allie/Bruhmoe)