Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-fcl
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
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
Guilhem Saurel
hpp-fcl
Commits
ff1b38a3
Commit
ff1b38a3
authored
12 years ago
by
Mark Moll
Browse files
Options
Downloads
Patches
Plain Diff
"add option for static lib; simplify cmake file"
parent
962b2c10
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+2
-0
2 additions, 0 deletions
CMakeLists.txt
src/CMakeLists.txt
+6
-54
6 additions, 54 deletions
src/CMakeLists.txt
with
8 additions
and
54 deletions
CMakeLists.txt
+
2
−
0
View file @
ff1b38a3
...
@@ -11,6 +11,8 @@ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules")
...
@@ -11,6 +11,8 @@ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules")
include
(
FCLVersion
)
include
(
FCLVersion
)
option
(
FCL_STATIC_LIBRARY
"Whether the FCL library should be static rather than shared"
OFF
)
# Whether to enable SSE
# Whether to enable SSE
option
(
FCL_USE_SSE
"Whether FCL should SSE instructions"
ON
)
option
(
FCL_USE_SSE
"Whether FCL should SSE instructions"
ON
)
set
(
FCL_HAVE_SSE 0
)
set
(
FCL_HAVE_SSE 0
)
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
6
−
54
View file @
ff1b38a3
add_library
(
${
PROJECT_NAME
}
SHARED
file
(
GLOB_RECURSE FCL_SOURCE_CODE
${
CMAKE_CURRENT_SOURCE_DIR
}
/*.cpp
)
BV/AABB.cpp
if
(
FCL_STATIC_LIBRARY
)
BV/OBB.cpp
add_library
(
${
PROJECT_NAME
}
STATIC
${
FCL_SOURCE_CODE
}
)
BV/RSS.cpp
else
()
BV/kIOS.cpp
add_library
(
${
PROJECT_NAME
}
SHARED
${
FCL_SOURCE_CODE
}
)
BV/OBBRSS.cpp
endif
()
BV/kDOP.cpp
traversal/traversal_node_base.cpp
traversal/traversal_node_bvhs.cpp
intersect.cpp
ccd/motion.cpp
BVH/BV_fitter.cpp
BVH/BV_splitter.cpp
BVH/BVH_model.cpp
BVH/BVH_utility.cpp
math/transform.cpp
traversal/traversal_node_setup.cpp
shape/geometric_shapes.cpp
shape/geometric_shapes_utility.cpp
collision_node.cpp
traversal/traversal_recurse.cpp
broadphase/broadphase_bruteforce.cpp
broadphase/broadphase_spatialhash.cpp
broadphase/broadphase_SaP.cpp
broadphase/broadphase_SSaP.cpp
broadphase/broadphase_interval_tree.cpp
broadphase/broadphase_dynamic_AABB_tree.cpp
broadphase/broadphase_dynamic_AABB_tree_array.cpp
collision.cpp
collision_func_matrix.cpp
broadphase/interval_tree.cpp
ccd/conservative_advancement.cpp
ccd/interval.cpp
ccd/interval_vector.cpp
ccd/interval_matrix.cpp
ccd/taylor_model.cpp
ccd/taylor_vector.cpp
ccd/taylor_matrix.cpp
distance_func_matrix.cpp
distance.cpp
narrowphase/gjk.cpp
narrowphase/gjk_libccd.cpp
narrowphase/narrowphase.cpp
broadphase/hierarchy_tree.cpp
articulated_model/joint_config.cpp
articulated_model/joint.cpp
articulated_model/link.cpp
articulated_model/model_config.cpp
articulated_model/model.cpp
ccd/interpolation/interpolation.cpp
ccd/interpolation/interpolation_factory.cpp
ccd/interpolation/interpolation_linear.cpp
profile.cpp
collision_data.cpp
)
target_link_libraries
(
${
PROJECT_NAME
}
${
CCD_LIBRARIES
}
${
OCTOMAP_LIBRARIES
}
${
Boost_LIBRARIES
}
)
target_link_libraries
(
${
PROJECT_NAME
}
${
CCD_LIBRARIES
}
${
OCTOMAP_LIBRARIES
}
${
Boost_LIBRARIES
}
)
...
...
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