-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathInfinyToolkitConfig.cmake.in
More file actions
26 lines (20 loc) · 860 Bytes
/
InfinyToolkitConfig.cmake.in
File metadata and controls
26 lines (20 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# CMake package configuration file for InteractionTools
@PACKAGE_GUARD@
@PACKAGE_INIT@
set(INFINYTOOLKIT_HAVE_MESHREFINEMENT @INFINYTOOLKIT_HAVE_MESHREFINEMENT@)
set(INFINYTOOLKIT_HAVE_SOFACARVING @INFINYTOOLKIT_HAVE_SOFACARVING@)
find_package(Sofa.Component.MechanicalLoad QUIET REQUIRED)
find_package(Sofa.Component.StateContainer QUIET REQUIRED)
find_package(Sofa.Component.Controller QUIET REQUIRED)
find_package(Sofa.Component.Haptics QUIET REQUIRED)
find_package(Sofa.Component.Constraint.Projective QUIET REQUIRED)
if(INFINYTOOLKIT_HAVE_MESHREFINEMENT )
find_package(MeshRefinement QUIET REQUIRED)
endif()
if(INFINYTOOLKIT_HAVE_SOFACARVING)
find_package(SofaCarving QUIET REQUIRED)
endif()
if(NOT TARGET @PROJECT_NAME@)
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
endif()
check_required_components(@PROJECT_NAME@)