Skip to content

Commit fbf9ba8

Browse files
authored
Fix typo in CMakeLists. (openscad#5375)
USE_GLEW not mutually exclusive itself but with USE_GLAD
1 parent dba8512 commit fbf9ba8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ option(ENABLE_EGL "Enable EGL support if available" ON)
4141
option(ENABLE_GLX "Enable GLX support if available" ON)
4242
# For now, we'll default to whatever OpenCSG uses (>=1.6 -> GLAD, <1.6 -> GLEW)
4343
option(USE_GLAD "Use GLAD. Mutually exclusive from USE_GLEW" OFF)
44-
option(USE_GLEW "Use GLEW. Mutually exclusive from USE_GLEW" OFF)
44+
option(USE_GLEW "Use GLEW. Mutually exclusive from USE_GLAD" OFF)
4545
option(NULLGL "Build without OpenGL, (implies HEADLESS=ON) " OFF)
4646
option(IDPREFIX "Prefix CSG nodes with index # (debugging purposes only, will break node cache)" OFF)
4747
option(PROFILE "Enable compiling with profiling / test coverage instrumentation" OFF)

0 commit comments

Comments
 (0)