-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
67 lines (53 loc) · 1.99 KB
/
Copy pathCMakeLists.txt
File metadata and controls
67 lines (53 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
cmake_minimum_required(VERSION 3.22)
project(graphics_course_renderer)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_FLAGS "-O3 -Wall -Wextra -march=native")
if (BENCHMARKING)
add_definitions(-Dbenchmarking=1)
endif (BENCHMARKING)
include_directories(vector3d point direction transformation_matrix lib/aux planetas ppm tonemapper lib/figures lib/figures/accelerators ray lib/camera renderer lib/pathtracing)
add_executable(graphics_course_renderer
main.cpp
lib/math/Vector3d.hpp
lib/math/Point.hpp
lib/math/Direction.hpp
lib/Ray.hpp
lib/Photon.hpp
lib/math/TransformationMatrix.hpp
lib/pathtracing/pathtracing.hpp
lib/photonmapping/photonmapping.hpp
lib/photonmapping/photonmapping_kdtree.hpp
lib/Scene.hpp
lib/PointLight.hpp
lib/camera/camera.hpp
lib/camera/camera.cpp
lib/Ppm.hpp
lib/tonemapper.hpp
lib/figures/Figure.hpp
lib/figures/Sphere.hpp
lib/figures/Plane.hpp
lib/figures/Cylinder.hpp
lib/figures/Disk.hpp
lib/figures/Ellipsoid.hpp
lib/figures/Triangle.hpp
lib/figures/Cone.hpp
lib/figures/HitRegister.hpp
lib/figures/ObjMod.hpp
lib/figures/TransformedFigure.hpp
lib/figures/ConstructiveSolidDifference.hpp
lib/figures/ConstructiveSolidUnion.hpp
lib/figures/ConstructiveSolidIntersection.hpp
lib/figures/Texture.hpp
lib/figures/Bounds3d.hpp
lib/figures/accelerators/BVH.hpp
lib/figures/accelerators/ConcurrentBVH.hpp
renderer/renderer.hpp
renderer/pathtracer/multithreaded_pathtracer.hpp
renderer/pathtracer/multithreaded_pathtracer_bvh.hpp
renderer/photonmapper/multithreaded_photonmapper.hpp
renderer/photonmapper/multithreaded_photonmapper_bvh.hpp
lib/aux/aux.hpp
lib/aux/Channel.hpp
lib/aux/benchmarking.hpp
lib/aux/benchmarking.cpp
lib/aux/ThreadSafeCounter.hpp)