Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
iMSTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
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
Ben Boeckel
iMSTK
Commits
9f3d7339
Commit
9f3d7339
authored
3 years ago
by
Andrew Wilson
Browse files
Options
Downloads
Patches
Plain Diff
BUG: Fix config file for paths with spaces
parent
6f26e143
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/iMSTKConfig.cmake.in
+4
-4
4 additions, 4 deletions
CMake/iMSTKConfig.cmake.in
with
4 additions
and
4 deletions
CMake/iMSTKConfig.cmake.in
+
4
−
4
View file @
9f3d7339
...
...
@@ -24,7 +24,7 @@ set(CMAKE_DEBUG_POSTFIX @CMAKE_DEBUG_POSTFIX@)
find_package( Assimp REQUIRED )
# Eigen3
set(Eigen3_DIR @Eigen3_DIR@)
set(Eigen3_DIR
"
@Eigen3_DIR@
"
)
find_dependency( Eigen3 REQUIRED )
# FTD2XX
...
...
@@ -36,12 +36,12 @@ endif()
find_package( g3log REQUIRED )
# glm
set(glm_DIR @glm_DIR@)
set(glm_DIR
"
@glm_DIR@
"
)
find_dependency( glm REQUIRED )
# GTest
if(iMSTK_BUILD_TESTING)
set(GTest_DIR @GTest_DIR@)
set(GTest_DIR
"
@GTest_DIR@
"
)
find_dependency( GTest REQUIRED NO_DEFAULT_PATH )
endif()
...
...
@@ -95,7 +95,7 @@ list(GET OPENVR_INCLUDE_DIRS 0 OpenVR_INCLUDE_DIR)
list(GET OPENVR_LIBRARIES 1 OpenVR_LIBRARY)
set(OpenVR_INCLUDE_DIR ${OpenVR_INCLUDE_DIR} CACHE INTERNAL "")
set(OpenVR_LIBRARY ${OpenVR_LIBRARY} CACHE INTERNAL "")
set(VTK_DIR @VTK_DIR@)
set(VTK_DIR
"
@VTK_DIR@
"
)
find_dependency(VTK CONFIG)
# modules are linked via `VTK::CommonCore`
# vtk_module_autoinit is needed
...
...
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