Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Erik Palmer
VTK
Commits
074d3212
Commit
074d3212
authored
7 years ago
by
Jean-Christophe Fillion-Robin
Browse files
Options
Downloads
Patches
Plain Diff
ExternalModule: Ensure module built externally use required VTK flags
parent
300863a7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMake/vtkExternalModuleMacros.cmake
+11
-0
11 additions, 0 deletions
CMake/vtkExternalModuleMacros.cmake
with
11 additions
and
0 deletions
CMake/vtkExternalModuleMacros.cmake
+
11
−
0
View file @
074d3212
...
...
@@ -45,6 +45,17 @@ endif()
include
(
${
VTK_CMAKE_DIR
}
/vtkInitializeBuildType.cmake
)
# Use VTK's flags.
set
(
CMAKE_C_FLAGS
"
${
CMAKE_C_FLAGS
}
${
VTK_REQUIRED_C_FLAGS
}
"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
${
VTK_REQUIRED_CXX_FLAGS
}
"
)
set
(
CMAKE_EXE_LINKER_FLAGS
"
${
CMAKE_EXE_LINKER_FLAGS
}
${
VTK_REQUIRED_EXE_LINKER_FLAGS
}
"
)
set
(
CMAKE_SHARED_LINKER_FLAGS
"
${
CMAKE_SHARED_LINKER_FLAGS
}
${
VTK_REQUIRED_SHARED_LINKER_FLAGS
}
"
)
set
(
CMAKE_MODULE_LINKER_FLAGS
"
${
CMAKE_MODULE_LINKER_FLAGS
}
${
VTK_REQUIRED_MODULE_LINKER_FLAGS
}
"
)
option
(
BUILD_SHARED_LIBS
"Build VTK module with shared libraries."
${
VTK_BUILD_SHARED_LIBS
}
)
if
(
NOT CMAKE_POSITION_INDEPENDENT_CODE
)
set
(
CMAKE_POSITION_INDEPENDENT_CODE ON
)
endif
()
# Add the VTK_MODULES_DIR to the CMAKE_MODULE_PATH and then use the binary
# directory for the project to write out new ones to.
if
(
VTK_MODULES_DIR
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment