Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VTK Examples
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
VTK
VTK Examples
Commits
725dd86a
Commit
725dd86a
authored
3 years ago
by
Andrew Maclean
Browse files
Options
Downloads
Patches
Plain Diff
Fix command line is too long failure in Windows
parent
d9cf7869
No related branches found
Branches containing commit
No related tags found
1 merge request
!244
Fix command line is too long failure in Windows
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+3
-0
3 additions, 0 deletions
CMakeLists.txt
src/Admin/VTKCMakeLists
+5
-3
5 additions, 3 deletions
src/Admin/VTKCMakeLists
src/Admin/VTKQtCMakeLists
+3
-0
3 additions, 0 deletions
src/Admin/VTKQtCMakeLists
with
11 additions
and
3 deletions
CMakeLists.txt
+
3
−
0
View file @
725dd86a
...
...
@@ -138,6 +138,9 @@ else ()
message
(
STATUS
"VTKWikiExamples: git lfs is installed."
)
endif
()
# Prevent a "command line is too long" failure in Windows.
set
(
CMAKE_NINJA_FORCE_RESPONSE_FILE
"ON"
CACHE BOOL
"Force Ninja to use response files."
)
message
(
STATUS
""
)
message
(
STATUS
"Some tests will be excluded."
)
include
(
${
PROJECT_SOURCE_DIR
}
/src/ExcludedTests/ExcludedTests.cmake
)
...
...
This diff is collapsed.
Click to expand it.
src/Admin/VTKCMakeLists
+
5
−
3
View file @
725dd86a
...
...
@@ -10,7 +10,7 @@ find_package(VTK COMPONENTS ZZZ
if (NOT VTK_FOUND)
message("Skipping XXX: ${VTK_NOT_FOUND_MESSAGE}")
return
()
return()
endif()
message (STATUS "VTK_VERSION: ${VTK_VERSION}")
if (VTK_VERSION VERSION_LESS "8.90.0")
...
...
@@ -18,8 +18,10 @@ if (VTK_VERSION VERSION_LESS "8.90.0")
include(${VTK_USE_FILE})
add_executable(XXX MACOSX_BUNDLE XXX.cxx )
target_link_libraries(XXX PRIVATE ${VTK_LIBRARIES})
else
()
else()
# include all components
# Prevent a "command line is too long" failure in Windows.
set(CMAKE_NINJA_FORCE_RESPONSE_FILE "ON" CACHE BOOL "Force Ninja to use response files.")
add_executable(XXX MACOSX_BUNDLE XXX.cxx )
target_link_libraries(XXX PRIVATE ${VTK_LIBRARIES})
# vtk_module_autoinit is needed
...
...
@@ -27,7 +29,7 @@ else ()
TARGETS XXX
MODULES ${VTK_LIBRARIES}
)
endif
()
endif()
```
###Download and Build XXX
...
...
This diff is collapsed.
Click to expand it.
src/Admin/VTKQtCMakeLists
+
3
−
0
View file @
725dd86a
...
...
@@ -81,6 +81,9 @@ if (VTK_VERSION VERSION_LESS "8.90.0")
endif()
target_link_libraries(XXX ${VTK_LIBRARIES})
else()
# include all components
# Prevent a "command line is too long" failure in Windows.
set(CMAKE_NINJA_FORCE_RESPONSE_FILE "ON" CACHE BOOL "Force Ninja to use response files.")
# CMAKE_AUTOMOC in ON so the MOC headers will be automatically wrapped.
add_executable(XXX MACOSX_BUNDLE
${CXX_FILES} ${UISrcs} ${QT_WRAP})
...
...
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