light/modules/surface/CMakeLists.txt
light7734 638a009047
Some checks reported errors
continuous-integration/drone/push Build was killed
refactor: surface, app, tests, ecs refactors
2025-07-28 20:45:24 +03:30

16 lines
274 B
CMake

if (NOT WIN32)
add_library_module(surface linux/system.cpp)
else()
endif()
target_link_libraries(surface PUBLIC
ecs
app
PRIVATE
glfw
logger
lt_debug
)
add_test_module(surface system.test.cpp)
target_link_libraries(surface_tests PRIVATE glfw)