Files
Seele/src/Engine/Graphics/RenderPass/CMakeLists.txt
T

41 lines
979 B
CMake
Raw Normal View History

2022-02-24 22:38:26 +01:00
target_sources(Engine
2022-11-17 16:47:42 +01:00
PRIVATE
2020-06-02 11:46:18 +02:00
BasePass.h
BasePass.cpp
2024-05-30 16:56:22 +02:00
CachedDepthPass.h
CachedDepthPass.cpp
2023-01-21 18:43:21 +01:00
DebugPass.h
DebugPass.cpp
2020-06-02 11:46:18 +02:00
DepthPrepass.h
DepthPrepass.cpp
2021-05-06 17:02:10 +02:00
LightCullingPass.h
LightCullingPass.cpp
RenderGraph.h
2022-11-17 16:47:42 +01:00
RenderGraphResources.h
RenderGraphResources.cpp
2021-05-06 17:02:10 +02:00
RenderPass.h
2023-11-05 10:36:01 +01:00
RenderPass.cpp
2023-01-29 18:58:59 +01:00
SkyboxRenderPass.h
SkyboxRenderPass.cpp
2022-04-15 11:19:30 +02:00
TextPass.h
TextPass.cpp
2021-09-23 10:10:39 +02:00
UIPass.h
2024-06-04 21:34:14 +02:00
UIPass.cpp
VisibilityPass.h
VisibilityPass.cpp)
2022-11-22 22:11:37 +01:00
target_sources(Engine
PUBLIC FILE_SET HEADERS
FILES
BasePass.h
2024-05-30 16:56:22 +02:00
CachedDepthPass.h
2023-01-21 18:43:21 +01:00
DebugPass.h
2022-11-22 22:11:37 +01:00
DepthPrepass.h
LightCullingPass.h
RenderGraph.h
RenderGraphResources.h
RenderPass.h
2023-01-29 18:58:59 +01:00
SkyboxRenderPass.h
2022-11-22 22:11:37 +01:00
TextPass.h
2024-06-04 21:34:14 +02:00
UIPass.h
VisibilityPass.h)