Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 776 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 776 Bytes

Realtime Rendering Lensflares

Building

Tested with cmake 3.20.4 and Visual Studio 2019

Prerequisites

You need to install the following:

  • Visual Studio 2019
  • CMake
  • Conan

Building & Project generation

Generate a Visual Studio Project on Windows:

git clone --recursive git@github.com:Latios96/rr-lensflares.git
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..

If this succeeds, you can open the generated Visual Studio project in Visual Studio. You can also use another IDE like Clion.

If you prefer to build on the command line, use this command: (As far as I tested, this works only with the Visual Studio generator, not with ninja)

cmake --build . --config Release -- /M:%NUMBER_OF_PROCESSORS%