light/modules/mirror/CMakeLists.txt

20 lines
379 B
Text
Raw Permalink Normal View History

2025-07-20 04:46:15 +03:30
add_library_module(libmirror
2025-07-05 13:28:41 +03:30
)
target_link_libraries(
2025-07-20 04:46:15 +03:30
libmirror
INTERFACE
app
opengl::opengl
surface
2025-07-05 13:28:41 +03:30
)
2025-07-20 04:46:15 +03:30
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)