light/modules/surface/CMakeLists.txt
light7734 9ca94dc7d7
Some checks reported errors
continuous-integration/drone/push Build was killed
refactor(surface&renderer): resizing issues
2025-10-03 13:26:07 +03:30

22 lines
390 B
CMake

if (NOT WIN32)
add_library_module(surface linux/system.cpp)
target_link_libraries(surface PRIVATE X11)
else(WIN32)
add_library_module(surface windows/system.cpp)
endif()
target_link_libraries(surface PUBLIC
ecs
app
math
memory
PRIVATE
logger
lt_debug
time
)
add_test_module(surface system.test.cpp)
add_fuzz_module(surface system.fuzz.cpp)