21 lines
305 B
CMake
21 lines
305 B
CMake
cmake_minimum_required(VERSION 3.5.0)
|
|
project(Raytracer VERSION 0.1.0 LANGUAGES C CXX)
|
|
|
|
add_executable(Raytracer
|
|
main.cpp
|
|
aabb.h
|
|
bvh.h
|
|
camera.h
|
|
colour.h
|
|
hittable.h
|
|
hittableList.h
|
|
interval.h
|
|
material.h
|
|
ray.h
|
|
rayTracer.h
|
|
sphere.h
|
|
texture.h
|
|
vec3.h
|
|
)
|
|
|