diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d35a8d..3e4a04c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -56,6 +56,9 @@ add_executable(${PROJECT_NAME} src/ocean/ocean.cpp src/ocean/ocean_alt.h src/ocean/ocean_alt.cpp + src/ocean/halftone.h src/ocean/halftone.cpp + + src/skybox.h src/skybox.cpp ) # GLEW: this creates its library and allows you to `#include "GL/glew.h"` @@ -92,6 +95,11 @@ qt6_add_resources(${PROJECT_NAME} "Resources" resources/images/anamorphic.jpg resources/images/daniel.jpg resources/images/sky_clouds.png + resources/images/halftone.png + + + + # resources/images/ground.png resources/shaders/shader.frag resources/shaders/shader.vert @@ -103,6 +111,17 @@ qt6_add_resources(${PROJECT_NAME} "Resources" resources/shaders/color.vert resources/shaders/color.frag + resources/shaders/foam.frag + resources/shaders/foam.vert + + resources/shaders/skybox.frag + resources/shaders/skybox.vert + + + + + + ) |