diff options
author | Keuin <[email protected]> | 2022-04-13 14:42:59 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2022-04-13 14:42:59 +0800 |
commit | 3caba9694f6e6f0f8b51dcffd7619fa04fbe6c29 (patch) | |
tree | 0975252facef9f71931dee7bbd526bcfccf49ad4 /CMakeLists.txt | |
parent | 4ad345447384ae9327cab0977b95d0b67f8bde57 (diff) |
Antialiasing. (not parallelized)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 78eeed9..c531ea9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,9 +12,9 @@ set(CMAKE_VERBOSE_MAKEFILE on) # main executable -add_executable(rt main.cpp vec.h bitmap.h ray.h bitfont.h hitlist.h object.h sphere.h viewport.h) +add_executable(rt main.cpp vec.h bitmap.h ray.h bitfont.h hitlist.h object.h sphere.h viewport.h aa.h) add_executable(image_output main_image_output.cpp vec.h bitmap.h bitfont.h hitlist.h object.h sphere.h viewport.h) -add_executable(simple_scanner main_simple_scanner.cpp vec.h bitmap.h ray.h timer.h bitfont.h hitlist.h object.h sphere.h viewport.h) +add_executable(simple_scanner main_simple_scanner.cpp vec.h bitmap.h ray.h timer.h bitfont.h hitlist.h object.h sphere.h viewport.h aa.h) # googletest |