Files
Raytracer/CMakeLists.txt
2024-07-03 15:09:13 -04:00

18 lines
280 B
CMake

cmake_minimum_required(VERSION 3.5.0)
project(Raytracer VERSION 0.1.0 LANGUAGES C CXX)
add_executable(Raytracer
ImageGenerator.cpp
camera.h
colour.h
hittable.h
hittableList.h
interval.h
material.h
ray.h
rayTracer.h
sphere.h
vec3.h
)