light/modules/surface/CMakeLists.txt
light7734 79e22cec0e
Some checks failed
continuous-integration/drone/pr Build is failing
wip
2025-10-10 13:18:14 +03:30

23 lines
400 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
tbb
PRIVATE
logger
lt_debug
time
)
add_test_module(surface system.test.cpp)
# add_fuzz_module(surface system.fuzz.cpp)