Separated Whitted from Path Tracing. Added FreeImage dependecy.
This commit is contained in:
4
Makefile
4
Makefile
@@ -1,9 +1,9 @@
|
||||
CXX = g++
|
||||
TARGET = ray
|
||||
OBJECTS = main.o disk.o plane.o sphere.o directional_light.o point_light.o tracer.o path_tracer.o
|
||||
OBJECTS = main.o disk.o plane.o sphere.o directional_light.o point_light.o tracer.o path_tracer.o whitted_tracer.o
|
||||
DEPENDS = $(OBJECTS:.o=.d)
|
||||
CXXFLAGS = -ansi -pedantic -Wall -DGLM_FORCE_RADIANS -fopenmp
|
||||
LDLIBS =
|
||||
LDLIBS = -lfreeimage
|
||||
|
||||
.PHONY: all
|
||||
all: CXXFLAGS += -O2 -DNDEBUG
|
||||
|
Reference in New Issue
Block a user