Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Michael Migliore
VTK
Commits
48889e69
Commit
48889e69
authored
Jul 31, 2009
by
Dave Partyka
Browse files
COMP: link Parallel against opengl when rendering is enabled.
parent
71c6eeb5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Parallel/CMakeLists.txt
View file @
48889e69
...
...
@@ -9,6 +9,7 @@ IF(VTK_USE_RENDERING)
SET
(
KIT_PYTHON_LIBS vtkRenderingPythonD
${
KIT_PYTHON_LIBS
}
)
SET
(
KIT_JAVA_LIBS vtkRenderingJava
${
KIT_JAVA_LIBS
}
)
SET
(
KIT_INTERFACE_LIBRARIES vtkRendering
${
KIT_INTERFACE_LIBRARIES
}
)
SET
(
KIT_LIBS
${
KIT_LIBS
}
${
OPENGL_gl_LIBRARY
}
)
ENDIF
(
VTK_USE_RENDERING
)
IF
(
VTK_HAS_EXODUS
)
SET
(
KIT_LIBS
${
KIT_LIBS
}
vtkexoIIc
)
...
...
Rendering/Testing/Cxx/CMakeLists.txt
View file @
48889e69
...
...
@@ -99,7 +99,7 @@ CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/TestFBOInclude.h.in
ADD_EXECUTABLE
(
TestFBOImplementation
TestFBOImplementation.cxx
)
TARGET_LINK_LIBRARIES
(
TestFBOImplementation
vtkRendering
)
vtkRendering
${
OPENGL_gl_LIBRARY
}
)
ADD_EXECUTABLE
(
${
KIT
}
CxxTests
${
Tests
}
)
TARGET_LINK_LIBRARIES
(
${
KIT
}
CxxTests vtkRendering vtkIO
${
OPENGL_gl_LIBRARY
}
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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