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
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Ruiliang Gao
iMSTK
Commits
dccc0e0a
Commit
dccc0e0a
authored
7 years ago
by
Jean-Christophe Fillion-Robin
Browse files
Options
Downloads
Patches
Plain Diff
COMP: Update iMSTKConfig to find glfw and gli if Vulkan support is enabled
Suggested-by:
Alexis Girault
<
alexis.girault@kitware.com
>
parent
a4ccb14c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
iMSTKConfig.cmake.in
+9
-0
9 additions, 0 deletions
iMSTKConfig.cmake.in
with
9 additions
and
0 deletions
iMSTKConfig.cmake.in
+
9
−
0
View file @
dccc0e0a
...
...
@@ -10,6 +10,7 @@ list(INSERT CMAKE_MODULE_PATH 0 "${iMSTK_SOURCE_DIR}/CMake")
# iMSTK settings
set(iMSTK_USE_OMNI @iMSTK_USE_OMNI@)
set(iMSTK_USE_Vulkan @iMSTK_USE_Vulkan@)
set(VegaFEM_DIR @VegaFEM_DIR@)
set(VTK_DIR @VTK_DIR@)
...
...
@@ -23,6 +24,14 @@ include_directories( ${g3log_INCLUDE_DIR} )
# glm
find_package( glm REQUIRED )
if(iMSTK_USE_Vulkan)
# glfw
find_package( glfw REQUIRED )
# gli
find_package( gli REQUIRED )
endif()
# Eigen
find_package( Eigen 3.1.2 REQUIRED )
include_directories( ${Eigen_INCLUDE_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