diff --git a/dep/glad/CMakeLists.txt b/dep/glad/CMakeLists.txt index 24a4fb45f..1c0f20144 100644 --- a/dep/glad/CMakeLists.txt +++ b/dep/glad/CMakeLists.txt @@ -16,11 +16,11 @@ target_link_libraries(glad PRIVATE Threads::Threads "${CMAKE_DL_LIBS}") if(WIN32) target_sources(glad PRIVATE src/glad_wgl.c) else() - if(USE_EGL) + if(ENABLE_EGL) target_sources(glad PRIVATE src/glad_egl.c) target_link_libraries(glad PRIVATE EGL::EGL) endif() - if(USE_X11) + if(ENABLE_X11) target_sources(glad PRIVATE src/glad_glx.c) endif() endif()