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

33 lines
742 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
2023-01-21 18:43:21 +01:00
DebugVertex.h
2020-04-15 02:03:56 +02:00
GraphicsResources.h
GraphicsResources.cpp
2020-05-05 01:51:13 +02:00
GraphicsInitializer.h
2020-04-15 02:03:56 +02:00
GraphicsEnums.h
2021-04-25 23:43:40 +02:00
GraphicsEnums.cpp
Graphics.h
Graphics.cpp
2020-04-15 02:03:56 +02:00
Mesh.h
Mesh.cpp
2020-06-02 11:46:18 +02:00
MeshBatch.h
MeshBatch.cpp
2020-09-19 14:36:50 +02:00
ShaderCompiler.h
ShaderCompiler.cpp
2023-08-28 21:23:13 +02:00
VertexData.h
VertexData.cpp)
2023-02-24 22:09:07 +01:00
2022-11-22 22:11:37 +01:00
target_sources(Engine
PUBLIC FILE_SET HEADERS
FILES
2023-01-21 18:43:21 +01:00
DebugVertex.h
2022-11-22 22:11:37 +01:00
GraphicsResources.h
GraphicsInitializer.h
GraphicsEnums.h
Graphics.h
Mesh.h
MeshBatch.h
2023-08-28 21:23:13 +02:00
ShaderCompiler.h)
2020-06-02 11:46:18 +02:00
add_subdirectory(RenderPass/)
add_subdirectory(Vulkan/)