Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
VTK
VTK
Commits
5b02ea61
Commit
5b02ea61
authored
Nov 12, 2002
by
Sebastien Barre
Browse files
FIX: we *need* OPENGL_INCLUDE_DIR, since OPENGL_INCLUDE_PATH is *not* in the cache
parent
5d9d124d
Changes
1
Hide whitespace changes
Inline
Side-by-side
vtkCMakeOptions.cmake
View file @
5b02ea61
...
...
@@ -125,6 +125,12 @@ IF(CMAKE_COMPILER_IS_GNUCXX)
ENDIF
(
WIN32
)
ENDIF
(
CMAKE_COMPILER_IS_GNUCXX
)
IF
(
OPENGL_INCLUDE_DIR
)
INCLUDE_DIRECTORIES
(
${
OPENGL_INCLUDE_DIR
}
)
ENDIF
(
OPENGL_INCLUDE_DIR
)
# This one because OPENGL_INCLUDE_PATH is also defined for backward compatibility
IF
(
OPENGL_INCLUDE_PATH
)
INCLUDE_DIRECTORIES
(
${
OPENGL_INCLUDE_PATH
}
)
ENDIF
(
OPENGL_INCLUDE_PATH
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment