mirror of
https://github.com/MartinOpat/cuda-based-raytrace.git
synced 2025-06-07 02:13:10 +02:00
18 lines
210 B
Markdown
18 lines
210 B
Markdown
# cuda-based-raytrace
|
|
|
|
## How to run
|
|
|
|
First, initialize the imGui submodule:
|
|
```bash
|
|
git submodule update --init
|
|
```
|
|
|
|
Then, compile using cmake:
|
|
```bash
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make
|
|
./cuda-raytracer
|
|
```
|