light/modules/surface/CMakeLists.txt

23 lines
390 B
Text
Raw Normal View History

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
2025-09-20 15:36:15 +03:30
math
memory
PRIVATE
logger
lt_debug
time
)
add_test_module(surface system.test.cpp)
add_fuzz_module(surface system.fuzz.cpp)