- CMake 3.17+
- Clone project from github:
git clone https://github.com/udv-code/real --recursive
- Create build directory:
mkdir build && cd build
. - Configure CMake project:
cmake ..
or with specific generator(for example, VS 2019) :cmake -G "Visual Studio 16 2019" ..
- If you want to build sandbox project, you need to add
-DOPTION_REAL_BUILD_EXAMPLES=ON
to the end of yourcmake
command.
- If you want to build sandbox project, you need to add
Then you need to build generated project.
Use CLion!
Generate project files with "Visual Studio 16 2019"
generator, open generated .sln
file in Visual Studio and run build.
Other build types are not tested for now so you can learn how to build CMake projects by yourself(example: here).