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
Christian Butz
VTK
Commits
e5fd8310
Commit
e5fd8310
authored
Aug 25, 2005
by
Brad King
Browse files
ENH: QVTK and vtkMFC libraries need to honor VTK_LIBRARY_PROPERTIES.
parent
21c467de
Changes
2
Hide whitespace changes
Inline
Side-by-side
GUISupport/MFC/CMakeLists.txt
View file @
e5fd8310
...
...
@@ -9,6 +9,11 @@ SET(CMAKE_MFC_FLAG 6)
ADD_LIBRARY
(
vtkMFC
${
MFC_SRCS
}
)
# Apply user-defined properties to the library target.
IF
(
VTK_LIBRARY_PROPERTIES
)
SET_TARGET_PROPERTIES
(
vtkMFC PROPERTIES
${
VTK_LIBRARY_PROPERTIES
}
)
ENDIF
(
VTK_LIBRARY_PROPERTIES
)
TARGET_LINK_LIBRARIES
(
vtkMFC
vtkRendering
vtkGraphics
...
...
GUISupport/Qt/CMakeLists.txt
View file @
e5fd8310
...
...
@@ -88,6 +88,11 @@ SET_SOURCE_FILES_PROPERTIES(vtkEventQtSlotConnect.cxx PROPERTIES
ADD_LIBRARY
(
QVTK
${
QVTKLibSrcs
}
${
QVTKLibMocSrcs
}
)
# Apply user-defined properties to the library target.
IF
(
VTK_LIBRARY_PROPERTIES
)
SET_TARGET_PROPERTIES
(
QVTK PROPERTIES
${
VTK_LIBRARY_PROPERTIES
}
)
ENDIF
(
VTK_LIBRARY_PROPERTIES
)
# give Qt framework directory for linking
IF
(
APPLE
)
IF
(
QT_INST_MAJOR_VERSION GREATER 3
)
...
...
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