drop glu dependency

This commit is contained in:
2024-03-11 03:57:43 +11:00
parent 21c51ee0a3
commit 5061d1714d
2 changed files with 24 additions and 10 deletions

View File

@@ -8,7 +8,7 @@ add_executable(Lesson10 Lesson10.cpp)
set_target_properties(Lesson10 PROPERTIES
CXX_STANDARD 98
WIN32_EXECUTABLE ON)
target_link_libraries(Lesson10 SDL3::SDL3 OpenGL::GL OpenGL::GLU)
target_link_libraries(Lesson10 SDL3::SDL3 OpenGL::GL)
target_compile_options(Lesson10 PRIVATE $<$<CXX_COMPILER_ID:GNU>:-Wall -Wextra -pedantic>)
if (CMAKE_SYSTEM_NAME STREQUAL "Darwin")