fix(gx): if WHOA_BUILD_GLSDL, link SDL2 to event module

This commit is contained in:
phaneron 2024-09-06 14:17:24 -04:00
parent ddcdff5e51
commit eef37c109d

View file

@ -46,3 +46,9 @@ target_link_libraries(event
storm storm
tempest tempest
) )
if (WHOA_BUILD_GLSDL)
target_link_libraries(event
PRIVATE
SDL2::SDL2-static)
endif()