light/modules/window/CMakeLists.txt
light7734 e65b6b3f83
Some checks failed
continuous-integration/drone/push Build is failing
chore: remove glm dependency
2025-07-17 10:45:52 +03:30

13 lines
224 B
CMake

if (NOT WIN32)
add_library_module(window linux/window.cpp)
else()
add_library_module(window windows/window.cpp)
endif()
target_link_libraries(window PUBLIC
PRIVATE
glfw
logger
lt_debug
input
)