Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VTK
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Michael Migliore
VTK
Commits
50bcdabd
Commit
50bcdabd
authored
Sep 05, 2017
by
Shawn Waldon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows: Add compile option for AcceleratorsVTKm to avoid obj sizelimits
parent
1eceee9e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
Accelerators/Vtkm/CMakeLists.txt
Accelerators/Vtkm/CMakeLists.txt
+6
-0
No files found.
Accelerators/Vtkm/CMakeLists.txt
View file @
50bcdabd
...
...
@@ -210,6 +210,12 @@ target_include_directories(vtkAcceleratorsVTKm PUBLIC ${VTKm_INCLUDE_DIRS})
vtk_module_link_libraries
(
vtkAcceleratorsVTKm LINK_PRIVATE
${
VTKm_LIBRARIES
}
)
target_compile_options
(
vtkAcceleratorsVTKm PRIVATE
${
VTKm_COMPILE_OPTIONS
}
)
# MSVC has limits on obj size that are exceeded by this module so we need
# a flag to ignore those limits
if
(
WIN32
)
target_compile_options
(
vtkAcceleratorsVTKm PRIVATE /bigobj
)
endif
()
#install the required headers to make your own vtkm-vtk filter
if
(
NOT VTK_INSTALL_NO_DEVELOPMENT
)
install
(
DIRECTORY
...
...
Write
Preview
Markdown
is supported
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