light/modules/surface/CMakeLists.txt
light7734 6f007c47ed
Some checks failed
continuous-integration/drone/push Build is failing
feat: windows support for surface module
2025-09-10 15:24:42 +03:30

17 lines
321 B
CMake

if (NOT WIN32)
add_library_module(surface linux/system.cpp)
else(WIN32)
add_library_module(surface windows/system.cpp)
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)