light/modules/mirror/CMakeLists.txt
light7734 2b96a85b62
Some checks reported errors
continuous-integration/drone/push Build was killed
feat: systems
feat: surface system

This commit puts the project in major jeopardy as it overhauls the
architecture such as removing the layer stack completely, etc.

I am filled with determination.
2025-07-26 18:01:27 +03:30

19 lines
379 B
CMake

add_library_module(libmirror
)
target_link_libraries(
libmirror
INTERFACE
app
opengl::opengl
surface
)
add_test_module(libmirror
layers/editor_layer.test.cpp
panels/asset_browser.test.cpp
panels/properties.test.cpp
panels/scene_hierarchy.test.cpp
)
add_executable_module(mirror entrypoint/mirror.cpp)
target_link_libraries(mirror PRIVATE libmirror)