light/modules/surface/CMakeLists.txt
light7734 e36991e6de
test(surface): add fuzz testing
test(surface): add & fix unit tests

fix(surface): bugs

refactor(surface): minor refactors & some edge-case handling
2025-07-31 08:11:05 +03:30

16 lines
265 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)
add_fuzz_module(surface system.fuzz.cpp)