2025-07-26 18:01:27 +03:30
|
|
|
if (NOT WIN32)
|
2025-07-28 20:45:24 +03:30
|
|
|
add_library_module(surface linux/system.cpp)
|
2025-07-26 18:01:27 +03:30
|
|
|
else()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
target_link_libraries(surface PUBLIC
|
|
|
|
ecs
|
|
|
|
app
|
|
|
|
PRIVATE
|
|
|
|
glfw
|
|
|
|
logger
|
|
|
|
lt_debug
|
|
|
|
)
|
2025-07-28 20:45:24 +03:30
|
|
|
|
|
|
|
add_test_module(surface system.test.cpp)
|
2025-07-31 08:11:05 +03:30
|
|
|
add_fuzz_module(surface system.fuzz.cpp)
|