2025-07-10 13:29:03 +03:30
|
|
|
add_library_module(renderer
|
2025-07-26 18:01:27 +03:30
|
|
|
system.cpp
|
2025-09-30 14:04:22 +03:30
|
|
|
vk/debug/messenger.cpp
|
2025-09-25 22:23:08 +03:30
|
|
|
vk/context/instance.cpp
|
|
|
|
|
vk/context/surface.cpp
|
|
|
|
|
vk/context/device.cpp
|
|
|
|
|
vk/context/swapchain.cpp
|
|
|
|
|
vk/context/context.cpp
|
|
|
|
|
vk/pipeline.cpp
|
2025-07-10 13:29:03 +03:30
|
|
|
)
|
|
|
|
|
|
2025-09-22 18:50:17 +03:30
|
|
|
target_link_libraries(renderer
|
|
|
|
|
PUBLIC
|
|
|
|
|
app
|
|
|
|
|
ecs
|
2025-09-30 14:04:22 +03:30
|
|
|
memory
|
2025-09-25 22:23:08 +03:30
|
|
|
PRIVATE
|
2025-09-22 18:50:17 +03:30
|
|
|
surface
|
2025-09-25 22:23:08 +03:30
|
|
|
pthread
|
2025-07-26 18:01:27 +03:30
|
|
|
)
|
|
|
|
|
|
|
|
|
|
add_test_module(renderer
|
|
|
|
|
system.test.cpp
|
2025-09-30 14:04:22 +03:30
|
|
|
vk/test_utils.cpp
|
|
|
|
|
vk/debug/messenger.test.cpp
|
2025-09-25 22:23:08 +03:30
|
|
|
vk/context/instance.test.cpp
|
|
|
|
|
vk/context/surface.test.cpp
|
|
|
|
|
vk/context/device.test.cpp
|
|
|
|
|
vk/context/swapchain.test.cpp
|
|
|
|
|
vk/context/context.test.cpp
|
|
|
|
|
vk/pipeline.test.cpp
|
2025-07-26 18:01:27 +03:30
|
|
|
)
|
2025-09-30 14:04:22 +03:30
|
|
|
target_link_libraries(renderer_tests
|
|
|
|
|
PRIVATE
|
|
|
|
|
surface
|
|
|
|
|
pthread
|
|
|
|
|
)
|